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 0000000..83a687b Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koala.png differ 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 0000000..c73c986 Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koalaRecords.dbf differ 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 0000000..cf668f4 Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koalaRecords.sbn differ diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.sbx b/Jingmiao Fei_Koala observation/data/koalaRecords.sbx new file mode 100644 index 0000000..2c563e0 Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koalaRecords.sbx differ diff --git a/Jingmiao Fei_Koala observation/data/koalaRecords.shp b/Jingmiao Fei_Koala observation/data/koalaRecords.shp new file mode 100644 index 0000000..c8bfc16 Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koalaRecords.shp differ 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 0000000..45ca67b Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/koalaRecords.shx differ diff --git a/Jingmiao Fei_Koala observation/data/locationMarker.png b/Jingmiao Fei_Koala observation/data/locationMarker.png new file mode 100644 index 0000000..97cad08 Binary files /dev/null and b/Jingmiao Fei_Koala observation/data/locationMarker.png differ 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..f434671 --- /dev/null +++ b/Jingmiao Fei_Koala observation/js/firebase-config.js @@ -0,0 +1,18 @@ +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", + 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..46a0ecf --- /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.5.0/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();