-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnsw_covid_map.html
2395 lines (2126 loc) · 409 KB
/
nsw_covid_map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>NSW Covid Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<noscript>
<P><font color="red">Sorry, but this page requires javascript.</font>
</noscript>
<div id="map"></div>
<div id="legend"
style="background: #fff;
padding: 10px;
margin: 10px;
width: 100px;">
<strong>Barcharts</strong>
<BR>Each little barchart represents cases/day between 2021-07-30 and 2021-08-12.
<strong>Restrictions</strong> <!-- no one should have let me choose colours. Sorry. -->
<div style="color: #ff0000">Red: <A href="https://www.nsw.gov.au/covid-19/rules/affected-area">Area of Concern</A></div>
<div style="color: #ff8800">Orange: <A href="https://www.nsw.gov.au/covid-19/rules/greater-sydney">Greater Sydney and nearby</A></div>
<div style="color: #aaaa00">Yellow: <A href="https://www.nsw.gov.au/covid-19/rules/affected-regions">Newcastle and Hunter</A></div>
<div style="color: #990099">Purple: <A href="https://www.nsw.gov.au/covid-19/rules/what-you-can-do-nsw">Other Rural and Regional</A></div>
<BR><strong>Data from:</strong> <A href="https://data.nsw.gov.au/data/dataset/covid-19-cases-by-location/resource/21304414-1ff1-4243-a5d2-f52778048b29">data.nsw.gov.au</A>
<!-- <BR>Hover the mouse over them for more detail.can comment this out for screenshots -->
<!-- TODO Add buttons to choose between LGA and Postcodes -->
<!-- TODO Move more of the locked down details into lockeddown.txt and read it from there -->
<button id="toggle_display" onclick="toggle_display()">Toggle display</button> <!-- FIXME Smaller font please -->
</div> <!-- end legend -->
</div> <!-- end map -->
<script type="text/javascript">
var map;
var displaying;
var decorations=[]; <!-- FIXME this is just BFI - try to be smarter -->
function init_map() {
map = new google.maps.Map(
document.getElementById("map"),
{
center: {
// Fairfield
// lat: -33.887203,
// lng: 150.979458
// Parramatta
// lat: -33.7995485181818,
// lng: 151.0328134909090
lat: -33.887203,
lng: 151.0328134909090
},
zoom: 11 // higher number = more zoomed in
}
);
const legend = document.getElementById("legend");
map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(legend);
};
function add_box(n,w,s,e,c) {
var box = new google.maps.Rectangle(
{
strokeColor: c,
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: c,
fillOpacity: 0.35,
map: map,
bounds: {
north: n,
west: w,
south: s,
east: e,
}
}
);
decorations.push(box);
}
function add_circle(lat,lng,size,c) {
var radius=50*Math.sqrt(size)
var box = new google.maps.Circle(
{
strokeColor: c,
strokeOpacity: 0.8,
strokeWeight: 2,
fillColor: c,
fillOpacity: 0.35,
map: map,
center: { lat: lat, lng: lng },
radius: radius,
// e.g. radius: Math.sqrt(citymap[city].population) * 100,
}
);
}
function add_text(lat,lng,title,label,details) {
const myLatLng = { lat: lat, lng: lng };
const marker = new google.maps.Marker(
{
position: myLatLng,
map: map,
label: label,
title: title,
opacity: 0
}
);
const infowindow = new google.maps.InfoWindow({ content: details });
marker.addListener(
"mouseover", () => {
infowindow.open(
{
anchor: marker,
map,
shouldFocus: false,
}
);
}
);
marker.addListener(
"mouseout", () => {
infowindow.close();
}
);
decorations.push(marker);
}
function add_boxes(name,label,text,lat,lng,cases,colour) {
add_text(lat,lng,name,label,text);
var high=0.002;
var wide=0.002; // For a single case to be a square, keep wide=high
var s=lat;
var w=lng;
var first=1;
// add_circle(s,w,10,colour);
for (let day = 0; day < 14; day++) {
if(cases[day]>0 || !first){
first=0;
// n, w, s, e, colour
add_box(s+cases[day]*high,w,s,w+wide,colour);
// lat,lng,size
// add_circle(s,w,cases[day],"#ff0000");
w+=wide;
}
}
// No one should let me choose colours - help needed here please!
}
function undisplay_all_decorations(){
// TODO: better to hide/unhide than delete/recreate
// remove boxes and markers from map
decorations.forEach(decoration => decoration.setMap(null));
// delete all decorations
decorations=[];
}
function toggle_display(){
undisplay_all_decorations()
if(displaying == 'lgas'){
// TODO: better to hide/unhide
print_postcodes();
}else{
// TODO: better to hide/unhide
print_lgas();
}
}
function print_lgas(){
// Albury LGA is at -36.00521935,147.0998751
// Albury LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Armidale Regional LGA is at -30.2528733,152.200731
// Armidale Regional LGA (Regional and rural) is #aaaa00 hard locked down
// Armidale Regional LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 2 1 0 0 0 1, total 4 ( 0 : 4)
// Armidale Regional LGA (Regional and rural): cases all fall between 2021-08-07 and 2021-08-12
add_boxes("Armidale Regional LGA (Regional and rural)", "A", "Armidale Regional LGA (Regional and rural)<p>4 cases between 2021-08-07 and 2021-08-12:<p>2021-08-07: 2<br>2021-08-08: 1<br>2021-08-12: 1<br>", -30.2528733,152.200731, [ 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1 ], "#aaaa00");
// Ballina LGA is at -28.8406418,153.4666298
// Ballina LGA (Regional and rural) is #aaaa00 hard locked down
// Ballina LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Bathurst Regional LGA is at -33.4463763,149.8290532
// Bathurst Regional LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Bayside LGA is at -33.9561776,151.153430228571
// Bayside LGA (Area of concern) is #ff0000 hard locked down
// Bayside LGA (Area of concern) cases: 5 2 2 3 5 8 4 9 2 16 15 8 4 13, total 96 ( 29 : 67)
// Bayside LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Bayside LGA (Area of concern)", "B", "Bayside LGA (Area of concern)<p>96 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 5<br>2021-07-31: 2<br>2021-08-01: 2<br>2021-08-02: 3<br>2021-08-03: 5<br>2021-08-04: 8<br>2021-08-05: 4<br>2021-08-06: 9<br>2021-08-07: 2<br>2021-08-08: 16<br>2021-08-09: 15<br>2021-08-10: 8<br>2021-08-11: 4<br>2021-08-12: 13<br><p>Week to week Reff=2.3", -33.9561776,151.153430228571, [ 5, 2, 2, 3, 5, 8, 4, 9, 2, 16, 15, 8, 4, 13 ], "#ff0000");
// Bega Valley LGA is at -36.6028935,149.7950774
// Bega Valley LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Bellingen LGA is at -30.4053606,152.9763941
// Bellingen LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Berrigan LGA is at -35.62859215,145.30578075
// Berrigan LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Blacktown LGA is at -33.7342451818182,150.875838045455
// Blacktown LGA (Area of concern) is #ff0000 hard locked down
// Blacktown LGA (Area of concern) cases: 14 24 16 11 18 19 30 33 20 30 41 43 43 68, total 410 ( 132 : 278)
// Blacktown LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Blacktown LGA (Area of concern)", "B", "Blacktown LGA (Area of concern)<p>410 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 14<br>2021-07-31: 24<br>2021-08-01: 16<br>2021-08-02: 11<br>2021-08-03: 18<br>2021-08-04: 19<br>2021-08-05: 30<br>2021-08-06: 33<br>2021-08-07: 20<br>2021-08-08: 30<br>2021-08-09: 41<br>2021-08-10: 43<br>2021-08-11: 43<br>2021-08-12: 68<br><p>Week to week Reff=2.1", -33.7342451818182,150.875838045455, [ 14, 24, 16, 11, 18, 19, 30, 33, 20, 30, 41, 43, 43, 68 ], "#ff0000");
// Blayney LGA is at -33.4319642,149.3685277
// Blayney LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Blue Mountains LGA is at -33.69614073,150.45725406
// Blue Mountains LGA (Greater Sydney) is #ff8800 hard locked down
// Blue Mountains LGA (Greater Sydney) cases: 0 0 0 0 0 1 0 1 0 0 0 1 0 3, total 6 ( 1 : 5)
// Blue Mountains LGA (Greater Sydney): cases all fall between 2021-08-04 and 2021-08-12
add_boxes("Blue Mountains LGA (Greater Sydney)", "B", "Blue Mountains LGA (Greater Sydney)<p>6 cases between 2021-08-04 and 2021-08-12:<p>2021-08-04: 1<br>2021-08-06: 1<br>2021-08-10: 1<br>2021-08-12: 3<br><p>Week to week Reff=5", -33.69614073,150.45725406, [ 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 3 ], "#ff8800");
// Broken Hill LGA is at -29.4330519,142.0107687
// Broken Hill LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Burwood LGA is at -33.8813997,151.10828145
// Burwood LGA (Area of concern) is #ff0000 hard locked down
// Burwood LGA (Area of concern) cases: 0 0 0 1 0 2 0 3 0 1 2 0 2 1, total 12 ( 3 : 9)
// Burwood LGA (Area of concern): cases all fall between 2021-08-02 and 2021-08-12
add_boxes("Burwood LGA (Area of concern)", "B", "Burwood LGA (Area of concern)<p>12 cases between 2021-08-02 and 2021-08-12:<p>2021-08-02: 1<br>2021-08-04: 2<br>2021-08-06: 3<br>2021-08-08: 1<br>2021-08-09: 2<br>2021-08-11: 2<br>2021-08-12: 1<br><p>Week to week Reff=3", -33.8813997,151.10828145, [ 0, 0, 0, 1, 0, 2, 0, 3, 0, 1, 2, 0, 2, 1 ], "#ff0000");
// Byron LGA is at -28.5781998,153.512177275
// Byron LGA (Regional and rural) is #aaaa00 hard locked down
// Byron LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Cabonne LGA is at -33.08217425,148.886508
// Cabonne LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Camden LGA is at -33.9797333333333,150.703743333333
// Camden LGA (Greater Sydney) is #ff8800 hard locked down
// Camden LGA (Greater Sydney) cases: 1 1 2 8 2 2 3 2 4 3 5 1 8 4, total 46 ( 19 : 27)
// Camden LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Camden LGA (Greater Sydney)", "C", "Camden LGA (Greater Sydney)<p>46 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 1<br>2021-07-31: 1<br>2021-08-01: 2<br>2021-08-02: 8<br>2021-08-03: 2<br>2021-08-04: 2<br>2021-08-05: 3<br>2021-08-06: 2<br>2021-08-07: 4<br>2021-08-08: 3<br>2021-08-09: 5<br>2021-08-10: 1<br>2021-08-11: 8<br>2021-08-12: 4<br><p>Week to week Reff=1.4", -33.9797333333333,150.703743333333, [ 1, 1, 2, 8, 2, 2, 3, 2, 4, 3, 5, 1, 8, 4 ], "#ff8800");
// Campbelltown LGA is at -34.0100789142857,150.8435925
// Campbelltown LGA (Area of concern) is #ff0000 hard locked down
// Campbelltown LGA (Area of concern) cases: 8 14 20 11 15 10 16 12 11 16 20 10 16 18, total 197 ( 94 : 103)
// Campbelltown LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Campbelltown LGA (Area of concern)", "C", "Campbelltown LGA (Area of concern)<p>197 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 8<br>2021-07-31: 14<br>2021-08-01: 20<br>2021-08-02: 11<br>2021-08-03: 15<br>2021-08-04: 10<br>2021-08-05: 16<br>2021-08-06: 12<br>2021-08-07: 11<br>2021-08-08: 16<br>2021-08-09: 20<br>2021-08-10: 10<br>2021-08-11: 16<br>2021-08-12: 18<br><p>Week to week Reff=1.1", -34.0100789142857,150.8435925, [ 8, 14, 20, 11, 15, 10, 16, 12, 11, 16, 20, 10, 16, 18 ], "#ff0000");
// Canada Bay LGA is at -33.84962105,151.115361025
// Canada Bay LGA (Greater Sydney) is #ff8800 hard locked down
// Canada Bay LGA (Greater Sydney) cases: 0 1 2 2 0 1 0 1 1 2 1 4 2 1, total 18 ( 6 : 12)
// Canada Bay LGA (Greater Sydney): cases all fall between 2021-07-31 and 2021-08-12
add_boxes("Canada Bay LGA (Greater Sydney)", "C", "Canada Bay LGA (Greater Sydney)<p>18 cases between 2021-07-31 and 2021-08-12:<p>2021-07-31: 1<br>2021-08-01: 2<br>2021-08-02: 2<br>2021-08-04: 1<br>2021-08-06: 1<br>2021-08-07: 1<br>2021-08-08: 2<br>2021-08-09: 1<br>2021-08-10: 4<br>2021-08-11: 2<br>2021-08-12: 1<br><p>Week to week Reff=2", -33.84962105,151.115361025, [ 0, 1, 2, 2, 0, 1, 0, 1, 1, 2, 1, 4, 2, 1 ], "#ff8800");
// Canterbury-Bankstown LGA is at -33.9198396578947,151.056116078947
// Canterbury-Bankstown LGA (Area of concern) is #ff0000 hard locked down
// Canterbury-Bankstown LGA (Area of concern) cases: 51 83 49 65 80 50 94 67 62 57 66 78 95 69, total 966 ( 472 : 494)
// Canterbury-Bankstown LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Canterbury-Bankstown LGA (Area of concern)", "C", "Canterbury-Bankstown LGA (Area of concern)<p>966 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 51<br>2021-07-31: 83<br>2021-08-01: 49<br>2021-08-02: 65<br>2021-08-03: 80<br>2021-08-04: 50<br>2021-08-05: 94<br>2021-08-06: 67<br>2021-08-07: 62<br>2021-08-08: 57<br>2021-08-09: 66<br>2021-08-10: 78<br>2021-08-11: 95<br>2021-08-12: 69<br><p>Week to week Reff=1", -33.9198396578947,151.056116078947, [ 51, 83, 49, 65, 80, 50, 94, 67, 62, 57, 66, 78, 95, 69 ], "#ff0000");
// Central Coast LGA is at -33.36994909,151.39903139
// Central Coast LGA (Greater Sydney) is #ff8800 hard locked down
// Central Coast LGA (Greater Sydney) cases: 1 0 0 0 0 8 1 0 3 0 0 2 0 3, total 18 ( 10 : 8)
// Central Coast LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Central Coast LGA (Greater Sydney)", "C", "Central Coast LGA (Greater Sydney)<p>18 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 1<br>2021-08-04: 8<br>2021-08-05: 1<br>2021-08-07: 3<br>2021-08-10: 2<br>2021-08-12: 3<br><p>Week to week Reff=0.8", -33.36994909,151.39903139, [ 1, 0, 0, 0, 0, 8, 1, 0, 3, 0, 0, 2, 0, 3 ], "#ff8800");
// Cessnock LGA is at -32.8534976666667,151.2662724
// Cessnock LGA (Regional and rural) is #aaaa00 hard locked down
// Cessnock LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Clarence Valley LGA is at -29.497532175,153.11742435
// Clarence Valley LGA cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// Clarence Valley LGA: cases all fall between 2021-08-10 and 2021-08-10
add_boxes("Clarence Valley LGA", "C", "Clarence Valley LGA<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -29.497532175,153.11742435, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#990099");
// Coffs Harbour LGA is at -30.2467555333333,153.086112566667
// Coffs Harbour LGA cases: 0 0 0 0 0 0 0 0 0 1 0 0 0 0, total 1 ( 0 : 1)
// Coffs Harbour LGA: cases all fall between 2021-08-08 and 2021-08-08
add_boxes("Coffs Harbour LGA", "C", "Coffs Harbour LGA<p>1 case on 2021-08-08<p>2021-08-08: 1<br>", -30.2467555333333,153.086112566667, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0 ], "#990099");
// Coonamble LGA is at -30.393643,148.3002137
// Coonamble LGA (Regional and rural) is #aaaa00 hard locked down
// Coonamble LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Cootamundra-Gundagai Regional LGA is at -34.96587695,147.90060595
// Cootamundra-Gundagai Regional LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Cumberland LGA is at -33.84794475,151.00183505
// Cumberland LGA (Area of concern) is #ff0000 hard locked down
// Cumberland LGA (Area of concern) cases: 36 27 27 41 42 44 42 37 39 24 73 42 48 54, total 576 ( 259 : 317)
// Cumberland LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Cumberland LGA (Area of concern)", "C", "Cumberland LGA (Area of concern)<p>576 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 36<br>2021-07-31: 27<br>2021-08-01: 27<br>2021-08-02: 41<br>2021-08-03: 42<br>2021-08-04: 44<br>2021-08-05: 42<br>2021-08-06: 37<br>2021-08-07: 39<br>2021-08-08: 24<br>2021-08-09: 73<br>2021-08-10: 42<br>2021-08-11: 48<br>2021-08-12: 54<br><p>Week to week Reff=1.2", -33.84794475,151.00183505, [ 36, 27, 27, 41, 42, 44, 42, 37, 39, 24, 73, 42, 48, 54 ], "#ff0000");
// Dubbo Regional LGA is at -32.3933922,148.80566595
// Dubbo Regional LGA (Regional and rural) is #aaaa00 hard locked down
// Dubbo Regional LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 1 4 11, total 16 ( 0 : 16)
// Dubbo Regional LGA (Regional and rural): cases all fall between 2021-08-10 and 2021-08-12
add_boxes("Dubbo Regional LGA (Regional and rural)", "D", "Dubbo Regional LGA (Regional and rural)<p>16 cases between 2021-08-10 and 2021-08-12:<p>2021-08-10: 1<br>2021-08-11: 4<br>2021-08-12: 11<br>", -32.3933922,148.80566595, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 11 ], "#aaaa00");
// Dungog LGA is at -32.5392315,151.61543065
// Dungog LGA (Regional and rural) is #aaaa00 hard locked down
// Dungog LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Eurobodalla LGA is at -36.0478497333333,150.091382833333
// Eurobodalla LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Fairfield LGA is at -33.8648115714286,150.953582
// Fairfield LGA (Area of concern) is #ff0000 hard locked down
// Fairfield LGA (Area of concern) cases: 22 43 15 15 18 25 20 27 24 21 19 26 37 30, total 342 ( 158 : 184)
// Fairfield LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Fairfield LGA (Area of concern)", "F", "Fairfield LGA (Area of concern)<p>342 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 22<br>2021-07-31: 43<br>2021-08-01: 15<br>2021-08-02: 15<br>2021-08-03: 18<br>2021-08-04: 25<br>2021-08-05: 20<br>2021-08-06: 27<br>2021-08-07: 24<br>2021-08-08: 21<br>2021-08-09: 19<br>2021-08-10: 26<br>2021-08-11: 37<br>2021-08-12: 30<br><p>Week to week Reff=1.2", -33.8648115714286,150.953582, [ 22, 43, 15, 15, 18, 25, 20, 27, 24, 21, 19, 26, 37, 30 ], "#ff0000");
// Federation LGA is at -35.9042029,146.216216233333
// Federation LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Georges River LGA is at -33.9651990857143,151.088022642857
// Georges River LGA (Area of concern) is #ff0000 hard locked down
// Georges River LGA (Area of concern) cases: 5 4 8 2 3 4 10 11 4 3 13 5 6 6, total 84 ( 36 : 48)
// Georges River LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Georges River LGA (Area of concern)", "G", "Georges River LGA (Area of concern)<p>84 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 5<br>2021-07-31: 4<br>2021-08-01: 8<br>2021-08-02: 2<br>2021-08-03: 3<br>2021-08-04: 4<br>2021-08-05: 10<br>2021-08-06: 11<br>2021-08-07: 4<br>2021-08-08: 3<br>2021-08-09: 13<br>2021-08-10: 5<br>2021-08-11: 6<br>2021-08-12: 6<br><p>Week to week Reff=1.3", -33.9651990857143,151.088022642857, [ 5, 4, 8, 2, 3, 4, 10, 11, 4, 3, 13, 5, 6, 6 ], "#ff0000");
// Glen Innes Severn LGA is at -29.3927362,151.3926336
// Glen Innes Severn LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Goulburn Mulwaree LGA is at -34.7971566,149.6014865
// Goulburn Mulwaree LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Greater Hume Shire LGA is at -35.5889128,147.277927166667
// Greater Hume Shire LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Griffith LGA is at -34.3,146.083333
// Griffith LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Gunnedah LGA is at -30.7325278,150.4134796
// Gunnedah LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Hawkesbury LGA is at -33.4841936,150.72881666
// Hawkesbury LGA cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 2, total 3 ( 0 : 3)
// Hawkesbury LGA: cases all fall between 2021-08-10 and 2021-08-12
add_boxes("Hawkesbury LGA", "H", "Hawkesbury LGA<p>3 cases between 2021-08-10 and 2021-08-12:<p>2021-08-10: 1<br>2021-08-12: 2<br>", -33.4841936,150.72881666, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2 ], "#990099");
// Hay LGA is at -34.7395134,143.7165278
// Hay LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Hilltops LGA is at -34.2287999,149.0475049
// Hilltops LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Hornsby LGA is at -33.6546077181818,151.096936318182
// Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 1 0 0 0, total 1 ( 0 : 1)
// Hornsby LGA (Greater Sydney): cases all fall between 2021-08-09 and 2021-08-09
add_boxes("Hornsby LGA (Greater Sydney)", "H", "Hornsby LGA (Greater Sydney)<p>1 case on 2021-08-09<p>2021-08-09: 1<br>", -33.6546077181818,151.096936318182, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 ], "#ff8800");
// Hunters Hill LGA is at -33.8370675,151.143309
// Hunters Hill LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Inner West LGA is at -33.8877074333333,151.155072408333
// Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Inner West LGA (Greater Sydney) cases: 6 10 4 4 5 7 7 7 4 2 3 4 2 4, total 69 ( 43 : 26)
// Inner West LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Inner West LGA (Greater Sydney)", "I", "Inner West LGA (Greater Sydney)<p>69 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 6<br>2021-07-31: 10<br>2021-08-01: 4<br>2021-08-02: 4<br>2021-08-03: 5<br>2021-08-04: 7<br>2021-08-05: 7<br>2021-08-06: 7<br>2021-08-07: 4<br>2021-08-08: 2<br>2021-08-09: 3<br>2021-08-10: 4<br>2021-08-11: 2<br>2021-08-12: 4<br><p>Week to week Reff=0.6", -33.8877074333333,151.155072408333, [ 6, 10, 4, 4, 5, 7, 7, 7, 4, 2, 3, 4, 2, 4 ], "#ff8800");
// Inverell LGA is at -29.7543888,151.3206565
// Inverell LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Junee LGA is at -34.901956,147.6945633
// Junee LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Kempsey LGA is at -30.9821925,152.8646581
// Kempsey LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Kiama LGA is at -34.7,150.8
// Kiama LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Ku-ring-gai LGA is at -33.750195425,151.1484078875
// Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 1 1 1 1 1 0 1, total 6 ( 0 : 6)
// Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-12
add_boxes("Ku-ring-gai LGA (Greater Sydney)", "K", "Ku-ring-gai LGA (Greater Sydney)<p>6 cases between 2021-08-06 and 2021-08-12:<p>2021-08-06: 1<br>2021-08-07: 1<br>2021-08-08: 1<br>2021-08-09: 1<br>2021-08-10: 1<br>2021-08-12: 1<br>", -33.750195425,151.1484078875, [ 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1 ], "#ff8800");
// Lake Macquarie LGA is at -33.0017202916667,151.606046325
// Lake Macquarie LGA (Regional and rural) is #aaaa00 hard locked down
// Lake Macquarie LGA (Regional and rural) cases: 1 0 0 0 0 0 1 0 1 2 2 11 11 2, total 31 ( 2 : 29)
// Lake Macquarie LGA (Regional and rural): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Lake Macquarie LGA (Regional and rural)", "L", "Lake Macquarie LGA (Regional and rural)<p>31 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 1<br>2021-08-05: 1<br>2021-08-07: 1<br>2021-08-08: 2<br>2021-08-09: 2<br>2021-08-10: 11<br>2021-08-11: 11<br>2021-08-12: 2<br><p>Week to week Reff=14", -33.0017202916667,151.606046325, [ 1, 0, 0, 0, 0, 0, 1, 0, 1, 2, 2, 11, 11, 2 ], "#aaaa00");
// Lane Cove LGA is at -33.82911,151.17674
// Lane Cove LGA (Greater Sydney) is #ff8800 hard locked down
// Lane Cove LGA (Greater Sydney) cases: 0 0 1 0 0 0 0 0 1 0 2 1 0 1, total 6 ( 1 : 5)
// Lane Cove LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-12
add_boxes("Lane Cove LGA (Greater Sydney)", "L", "Lane Cove LGA (Greater Sydney)<p>6 cases between 2021-08-01 and 2021-08-12:<p>2021-08-01: 1<br>2021-08-07: 1<br>2021-08-09: 2<br>2021-08-10: 1<br>2021-08-12: 1<br><p>Week to week Reff=5", -33.82911,151.17674, [ 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 1 ], "#ff8800");
// Lismore LGA is at -28.9,153.3
// Lismore LGA (Regional and rural) is #aaaa00 hard locked down
// Lismore LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Lithgow LGA is at -33.3474522,150.20479105
// Lithgow LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 2, total 2 ( 0 : 2)
// Lithgow LGA: cases all fall between 2021-08-12 and 2021-08-12
add_boxes("Lithgow LGA", "L", "Lithgow LGA<p>2 cases on 2021-08-12<p>2021-08-12: 2<br>", -33.3474522,150.20479105, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], "#990099");
// Liverpool LGA is at -33.9469423625,150.87273705
// Liverpool LGA (Area of concern) is #ff0000 hard locked down
// Liverpool LGA (Area of concern) cases: 22 23 23 17 11 26 35 22 17 29 24 18 21 29, total 317 ( 157 : 160)
// Liverpool LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Liverpool LGA (Area of concern)", "L", "Liverpool LGA (Area of concern)<p>317 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 22<br>2021-07-31: 23<br>2021-08-01: 23<br>2021-08-02: 17<br>2021-08-03: 11<br>2021-08-04: 26<br>2021-08-05: 35<br>2021-08-06: 22<br>2021-08-07: 17<br>2021-08-08: 29<br>2021-08-09: 24<br>2021-08-10: 18<br>2021-08-11: 21<br>2021-08-12: 29<br><p>Week to week Reff=1", -33.9469423625,150.87273705, [ 22, 23, 23, 17, 11, 26, 35, 22, 17, 29, 24, 18, 21, 29 ], "#ff0000");
// Liverpool Plains LGA is at -31.6384,150.178
// Liverpool Plains LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Maitland LGA is at -32.726875,151.59116
// Maitland LGA (Regional and rural) is #aaaa00 hard locked down
// Maitland LGA (Regional and rural) cases: 0 0 0 0 0 1 3 2 0 2 0 1 3 1, total 13 ( 4 : 9)
// Maitland LGA (Regional and rural): cases all fall between 2021-08-04 and 2021-08-12
add_boxes("Maitland LGA (Regional and rural)", "M", "Maitland LGA (Regional and rural)<p>13 cases between 2021-08-04 and 2021-08-12:<p>2021-08-04: 1<br>2021-08-05: 3<br>2021-08-06: 2<br>2021-08-08: 2<br>2021-08-10: 1<br>2021-08-11: 3<br>2021-08-12: 1<br><p>Week to week Reff=2.2", -32.726875,151.59116, [ 0, 0, 0, 0, 0, 1, 3, 2, 0, 2, 0, 1, 3, 1 ], "#aaaa00");
// Mid-Coast LGA is at -32.13453365,152.315377833333
// Mid-Coast LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Mid-Western Regional LGA is at -32.7393511,150.0766964
// Mid-Western Regional LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Moree Plains LGA is at -29.4261888,149.8717445
// Moree Plains LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Mosman LGA is at -33.8244677,151.2409774
// Mosman LGA (Greater Sydney) is #ff8800 hard locked down
// Mosman LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Murrumbidgee LGA is at -35.4724,145.747
// Murrumbidgee LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Muswellbrook LGA is at -32.2580271,150.664986
// Muswellbrook LGA (Regional and rural) is #aaaa00 hard locked down
// Muswellbrook LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Nambucca LGA is at -30.6720275,152.82183165
// Nambucca LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Narrandera LGA is at -35.047201,146.198629
// Narrandera LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Narromine LGA is at -32.4567,148.131
// Narromine LGA (Regional and rural) is #aaaa00 hard locked down
// Narromine LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Newcastle LGA is at -32.9138345857143,151.722501907143
// Newcastle LGA (Regional and rural) is #aaaa00 hard locked down
// Newcastle LGA (Regional and rural) cases: 0 0 0 0 0 0 1 3 6 5 5 9 3 3, total 35 ( 1 : 34)
// Newcastle LGA (Regional and rural): cases all fall between 2021-08-05 and 2021-08-12
add_boxes("Newcastle LGA (Regional and rural)", "N", "Newcastle LGA (Regional and rural)<p>35 cases between 2021-08-05 and 2021-08-12:<p>2021-08-05: 1<br>2021-08-06: 3<br>2021-08-07: 6<br>2021-08-08: 5<br>2021-08-09: 5<br>2021-08-10: 9<br>2021-08-11: 3<br>2021-08-12: 3<br><p>Week to week Reff=34", -32.9138345857143,151.722501907143, [ 0, 0, 0, 0, 0, 0, 1, 3, 6, 5, 5, 9, 3, 3 ], "#aaaa00");
// North Sydney LGA is at -33.83650426,151.21452892
// North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// North Sydney LGA (Greater Sydney): cases all fall between 2021-08-10 and 2021-08-10
add_boxes("North Sydney LGA (Greater Sydney)", "N", "North Sydney LGA (Greater Sydney)<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -33.83650426,151.21452892, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#ff8800");
// Northern Beaches LGA is at -33.7249783473684,151.272234184211
// Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Northern Beaches LGA (Greater Sydney) cases: 1 1 2 0 1 1 6 0 3 4 0 1 4 0, total 24 ( 12 : 12)
// Northern Beaches LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-11
add_boxes("Northern Beaches LGA (Greater Sydney)", "N", "Northern Beaches LGA (Greater Sydney)<p>24 cases between 2021-07-30 and 2021-08-11:<p>2021-07-30: 1<br>2021-07-31: 1<br>2021-08-01: 2<br>2021-08-03: 1<br>2021-08-04: 1<br>2021-08-05: 6<br>2021-08-07: 3<br>2021-08-08: 4<br>2021-08-10: 1<br>2021-08-11: 4<br><p>Week to week Reff=1", -33.7249783473684,151.272234184211, [ 1, 1, 2, 0, 1, 1, 6, 0, 3, 4, 0, 1, 4, 0 ], "#ff8800");
// Orange LGA is at -33.2055023,149.0209719
// Orange LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Parkes LGA is at -33.2150428,148.108875
// Parkes LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Parramatta LGA is at -33.7995485181818,151.032813490909
// Parramatta LGA (Area of concern) is #ff0000 hard locked down
// Parramatta LGA (Area of concern) cases: 11 3 8 3 15 14 17 20 6 12 17 13 8 16, total 163 ( 71 : 92)
// Parramatta LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Parramatta LGA (Area of concern)", "P", "Parramatta LGA (Area of concern)<p>163 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 11<br>2021-07-31: 3<br>2021-08-01: 8<br>2021-08-02: 3<br>2021-08-03: 15<br>2021-08-04: 14<br>2021-08-05: 17<br>2021-08-06: 20<br>2021-08-07: 6<br>2021-08-08: 12<br>2021-08-09: 17<br>2021-08-10: 13<br>2021-08-11: 8<br>2021-08-12: 16<br><p>Week to week Reff=1.3", -33.7995485181818,151.032813490909, [ 11, 3, 8, 3, 15, 14, 17, 20, 6, 12, 17, 13, 8, 16 ], "#ff0000");
// Penrith LGA is at -33.792528925,150.7350421375
// Penrith LGA (Area of concern) is #ff0000 hard locked down
// Penrith LGA (Area of concern) cases: 1 1 2 11 10 16 21 27 28 20 28 41 32 37, total 275 ( 62 : 213)
// Penrith LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Penrith LGA (Area of concern)", "P", "Penrith LGA (Area of concern)<p>275 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 1<br>2021-07-31: 1<br>2021-08-01: 2<br>2021-08-02: 11<br>2021-08-03: 10<br>2021-08-04: 16<br>2021-08-05: 21<br>2021-08-06: 27<br>2021-08-07: 28<br>2021-08-08: 20<br>2021-08-09: 28<br>2021-08-10: 41<br>2021-08-11: 32<br>2021-08-12: 37<br><p>Week to week Reff=3.4", -33.792528925,150.7350421375, [ 1, 1, 2, 11, 10, 16, 21, 27, 28, 20, 28, 41, 32, 37 ], "#ff0000");
// Port Macquarie-Hastings LGA is at -31.54351656,152.76155816
// Port Macquarie-Hastings LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Port Stephens LGA is at -33.1518188833333,151.525056
// Port Stephens LGA (Regional and rural) is #aaaa00 hard locked down
// Port Stephens LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 2 2 0 0 1 1, total 6 ( 0 : 6)
// Port Stephens LGA (Regional and rural): cases all fall between 2021-08-07 and 2021-08-12
add_boxes("Port Stephens LGA (Regional and rural)", "P", "Port Stephens LGA (Regional and rural)<p>6 cases between 2021-08-07 and 2021-08-12:<p>2021-08-07: 2<br>2021-08-08: 2<br>2021-08-11: 1<br>2021-08-12: 1<br>", -33.1518188833333,151.525056, [ 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 1 ], "#aaaa00");
// Queanbeyan-Palerang Regional LGA is at -35.4139523666667,149.333724433333
// Queanbeyan-Palerang Regional LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Randwick LGA is at -33.93403655,151.230495783333
// Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Randwick LGA (Greater Sydney) cases: 1 0 0 0 0 0 0 1 0 1 5 1 3 2, total 14 ( 1 : 13)
// Randwick LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Randwick LGA (Greater Sydney)", "R", "Randwick LGA (Greater Sydney)<p>14 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 1<br>2021-08-06: 1<br>2021-08-08: 1<br>2021-08-09: 5<br>2021-08-10: 1<br>2021-08-11: 3<br>2021-08-12: 2<br><p>Week to week Reff=13", -33.93403655,151.230495783333, [ 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 5, 1, 3, 2 ], "#ff8800");
// Richmond Valley LGA is at -28.9535888,153.0603846
// Richmond Valley LGA (Regional and rural) is #aaaa00 hard locked down
// Richmond Valley LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Ryde LGA is at -33.79894555,151.10204455
// Ryde LGA (Greater Sydney) is #ff8800 hard locked down
// Ryde LGA (Greater Sydney) cases: 3 2 1 1 0 1 3 1 2 6 4 3 2 5, total 34 ( 11 : 23)
// Ryde LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Ryde LGA (Greater Sydney)", "R", "Ryde LGA (Greater Sydney)<p>34 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 3<br>2021-07-31: 2<br>2021-08-01: 1<br>2021-08-02: 1<br>2021-08-04: 1<br>2021-08-05: 3<br>2021-08-06: 1<br>2021-08-07: 2<br>2021-08-08: 6<br>2021-08-09: 4<br>2021-08-10: 3<br>2021-08-11: 2<br>2021-08-12: 5<br><p>Week to week Reff=2.1", -33.79894555,151.10204455, [ 3, 2, 1, 1, 0, 1, 3, 1, 2, 6, 4, 3, 2, 5 ], "#ff8800");
// Shellharbour LGA is at -34.5663650333333,150.817295666667
// Shellharbour LGA (Greater Sydney) is #ff8800 hard locked down
// Shellharbour LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// Shellharbour LGA (Greater Sydney): cases all fall between 2021-08-10 and 2021-08-10
add_boxes("Shellharbour LGA (Greater Sydney)", "S", "Shellharbour LGA (Greater Sydney)<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -34.5663650333333,150.817295666667, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#ff8800");
// Shoalhaven LGA is at -34.964544225,150.54831295
// Shoalhaven LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Singleton LGA is at -32.58781475,151.2656869
// Singleton LGA (Regional and rural) is #aaaa00 hard locked down
// Singleton LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Snowy Monaro Regional LGA is at -36.1993025,148.91628868
// Snowy Monaro Regional LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Snowy Valleys LGA is at -35.6716393,148.2605154
// Snowy Valleys LGA cases: 0 0 0 1 0 0 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Snowy Valleys LGA: cases all fall between 2021-08-02 and 2021-08-02
add_boxes("Snowy Valleys LGA", "S", "Snowy Valleys LGA<p>1 case on 2021-08-02<p>2021-08-02: 1<br><p>Week to week Reff=0", -35.6716393,148.2605154, [ 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#990099");
// Strathfield LGA is at -33.8779364333333,151.079473
// Strathfield LGA (Area of concern) is #ff0000 hard locked down
// Strathfield LGA (Area of concern) cases: 4 5 7 5 3 2 0 3 1 1 6 1 5 4, total 47 ( 26 : 21)
// Strathfield LGA (Area of concern): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Strathfield LGA (Area of concern)", "S", "Strathfield LGA (Area of concern)<p>47 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 4<br>2021-07-31: 5<br>2021-08-01: 7<br>2021-08-02: 5<br>2021-08-03: 3<br>2021-08-04: 2<br>2021-08-06: 3<br>2021-08-07: 1<br>2021-08-08: 1<br>2021-08-09: 6<br>2021-08-10: 1<br>2021-08-11: 5<br>2021-08-12: 4<br><p>Week to week Reff=0.81", -33.8779364333333,151.079473, [ 4, 5, 7, 5, 3, 2, 0, 3, 1, 1, 6, 1, 5, 4 ], "#ff0000");
// Sutherland Shire LGA is at -34.0322142,151.090315027273
// Sutherland Shire LGA (Greater Sydney) is #ff8800 hard locked down
// Sutherland Shire LGA (Greater Sydney) cases: 0 0 1 2 0 1 0 2 2 1 2 3 1 5, total 20 ( 4 : 16)
// Sutherland Shire LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-12
add_boxes("Sutherland Shire LGA (Greater Sydney)", "S", "Sutherland Shire LGA (Greater Sydney)<p>20 cases between 2021-08-01 and 2021-08-12:<p>2021-08-01: 1<br>2021-08-02: 2<br>2021-08-04: 1<br>2021-08-06: 2<br>2021-08-07: 2<br>2021-08-08: 1<br>2021-08-09: 2<br>2021-08-10: 3<br>2021-08-11: 1<br>2021-08-12: 5<br><p>Week to week Reff=4", -34.0322142,151.090315027273, [ 0, 0, 1, 2, 0, 1, 0, 2, 2, 1, 2, 3, 1, 5 ], "#ff8800");
// Sydney LGA is at -33.8887632785714,151.1979153
// Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Sydney LGA (Greater Sydney) cases: 2 0 1 3 1 3 4 4 1 0 5 1 4 3, total 32 ( 14 : 18)
// Sydney LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Sydney LGA (Greater Sydney)", "S", "Sydney LGA (Greater Sydney)<p>32 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 2<br>2021-08-01: 1<br>2021-08-02: 3<br>2021-08-03: 1<br>2021-08-04: 3<br>2021-08-05: 4<br>2021-08-06: 4<br>2021-08-07: 1<br>2021-08-09: 5<br>2021-08-10: 1<br>2021-08-11: 4<br>2021-08-12: 3<br><p>Week to week Reff=1.3", -33.8887632785714,151.1979153, [ 2, 0, 1, 3, 1, 3, 4, 4, 1, 0, 5, 1, 4, 3 ], "#ff8800");
// Tamworth Regional LGA is at -31.0796586,151.02691445
// Tamworth Regional LGA (Regional and rural) is #aaaa00 hard locked down
// Tamworth Regional LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Temora LGA is at -34.2917756,147.5555951
// Temora LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Tenterfield LGA is at -28.47270195,152.3871174
// Tenterfield LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// The Hills Shire LGA is at -33.7155671833333,150.98929965
// The Hills Shire LGA (Greater Sydney) is #ff8800 hard locked down
// The Hills Shire LGA (Greater Sydney) cases: 5 1 2 1 4 1 1 2 5 0 2 1 3 3, total 31 ( 15 : 16)
// The Hills Shire LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("The Hills Shire LGA (Greater Sydney)", "T", "The Hills Shire LGA (Greater Sydney)<p>31 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 5<br>2021-07-31: 1<br>2021-08-01: 2<br>2021-08-02: 1<br>2021-08-03: 4<br>2021-08-04: 1<br>2021-08-05: 1<br>2021-08-06: 2<br>2021-08-07: 5<br>2021-08-09: 2<br>2021-08-10: 1<br>2021-08-11: 3<br>2021-08-12: 3<br><p>Week to week Reff=1.1", -33.7155671833333,150.98929965, [ 5, 1, 2, 1, 4, 1, 1, 2, 5, 0, 2, 1, 3, 3 ], "#ff8800");
// Tweed LGA is at -28.26468364,153.43723048
// Tweed LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Upper Hunter Shire LGA is at -32.0430854,151.16545915
// Upper Hunter Shire LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Upper Lachlan Shire LGA is at -34.7049651,149.37763615
// Upper Lachlan Shire LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Uralla LGA is at -30.4631048,151.320292
// Uralla LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Wagga Wagga LGA is at -35.04889115,147.3179028
// Wagga Wagga LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Walgett LGA is at -30.0267969,148.1231039
// Walgett LGA (Regional and rural) is #aaaa00 hard locked down
// Walgett LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 1 3, total 4 ( 0 : 4)
// Walgett LGA (Regional and rural): cases all fall between 2021-08-11 and 2021-08-12
add_boxes("Walgett LGA (Regional and rural)", "W", "Walgett LGA (Regional and rural)<p>4 cases between 2021-08-11 and 2021-08-12:<p>2021-08-11: 1<br>2021-08-12: 3<br>", -30.0267969,148.1231039, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3 ], "#aaaa00");
// Warren LGA is at -31.7026474,147.8161713
// Warren LGA (Regional and rural) is #aaaa00 hard locked down
// Warren LGA (Regional and rural) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Warrumbungle Shire LGA is at -31.4337328,149.4483636
// Warrumbungle Shire LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Waverley LGA is at -33.884627825,151.263269375
// Waverley LGA (Greater Sydney) is #ff8800 hard locked down
// Waverley LGA (Greater Sydney) cases: 0 0 1 2 0 0 1 1 2 1 3 4 1 1, total 17 ( 4 : 13)
// Waverley LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-12
add_boxes("Waverley LGA (Greater Sydney)", "W", "Waverley LGA (Greater Sydney)<p>17 cases between 2021-08-01 and 2021-08-12:<p>2021-08-01: 1<br>2021-08-02: 2<br>2021-08-05: 1<br>2021-08-06: 1<br>2021-08-07: 2<br>2021-08-08: 1<br>2021-08-09: 3<br>2021-08-10: 4<br>2021-08-11: 1<br>2021-08-12: 1<br><p>Week to week Reff=3.2", -33.884627825,151.263269375, [ 0, 0, 1, 2, 0, 0, 1, 1, 2, 1, 3, 4, 1, 1 ], "#ff8800");
// Weddin LGA is at -33.6532115,148.3285577
// Weddin LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Willoughby LGA is at -33.80317625,151.19229335
// Willoughby LGA (Greater Sydney) is #ff8800 hard locked down
// Willoughby LGA (Greater Sydney) cases: 0 0 1 2 3 0 0 1 0 0 0 0 0 0, total 7 ( 6 : 1)
// Willoughby LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-06
add_boxes("Willoughby LGA (Greater Sydney)", "W", "Willoughby LGA (Greater Sydney)<p>7 cases between 2021-08-01 and 2021-08-06:<p>2021-08-01: 1<br>2021-08-02: 2<br>2021-08-03: 3<br>2021-08-06: 1<br><p>Week to week Reff=0.17", -33.80317625,151.19229335, [ 0, 0, 1, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Wingecarribee LGA is at -34.539150975,150.449383
// Wingecarribee LGA cases: 0 1 0 0 0 0 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Wingecarribee LGA: cases all fall between 2021-07-31 and 2021-07-31
add_boxes("Wingecarribee LGA", "W", "Wingecarribee LGA<p>1 case on 2021-07-31<p>2021-07-31: 1<br><p>Week to week Reff=0", -34.539150975,150.449383, [ 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#990099");
// Wollondilly LGA is at -34.15444248,150.656765
// Wollondilly LGA cases: 0 1 0 0 0 0 0 0 0 0 0 0 1 0, total 2 ( 1 : 1)
// Wollondilly LGA: cases all fall between 2021-07-31 and 2021-08-11
add_boxes("Wollondilly LGA", "W", "Wollondilly LGA<p>2 cases on 2021-07-31 and 2021-08-11:<p>2021-07-31: 1<br>2021-08-11: 1<br><p>Week to week Reff=1", -34.15444248,150.656765, [ 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 ], "#990099");
// Wollongong LGA is at -34.3947218538461,150.885290361538
// Wollongong LGA (Greater Sydney) is #ff8800 hard locked down
// Wollongong LGA (Greater Sydney) cases: 0 0 0 0 3 0 0 0 0 0 0 0 0 0, total 3 ( 3 : 0)
// Wollongong LGA (Greater Sydney): cases all fall between 2021-08-03 and 2021-08-03
add_boxes("Wollongong LGA (Greater Sydney)", "W", "Wollongong LGA (Greater Sydney)<p>3 cases on 2021-08-03<p>2021-08-03: 3<br><p>Week to week Reff=0", -34.3947218538461,150.885290361538, [ 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Woollahra LGA is at -33.8795980166667,151.2469586
// Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 2 3 0 1 1, total 7 ( 0 : 7)
// Woollahra LGA (Greater Sydney): cases all fall between 2021-08-08 and 2021-08-12
add_boxes("Woollahra LGA (Greater Sydney)", "W", "Woollahra LGA (Greater Sydney)<p>7 cases between 2021-08-08 and 2021-08-12:<p>2021-08-08: 2<br>2021-08-09: 3<br>2021-08-11: 1<br>2021-08-12: 1<br>", -33.8795980166667,151.2469586, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 1 ], "#ff8800");
// Yass Valley LGA is at -34.9816248,149.1946165
// Yass Valley LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
displaying = 'lgas';
}
function print_postcodes(){
// Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks.<br>Sydney LGA is at -33.85985,151.20901
// Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 1 0 0 1 0 0 0 2 2, total 6 ( 1 : 5)
// Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-04 and 2021-08-12
add_boxes("Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks. Sydney LGA (Greater Sydney)", "P", "Postcode 2000 - Barangaroo, Darling Harbour, Dawes Point, Haymarket, Millers Point, Parliament House, Sydney, Sydney South, The Rocks.<br>Sydney LGA (Greater Sydney)<p>6 cases between 2021-08-04 and 2021-08-12:<p>2021-08-04: 1<br>2021-08-07: 1<br>2021-08-11: 2<br>2021-08-12: 2<br><p>Week to week Reff=5", -33.85985,151.20901, [ 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 2, 2 ], "#ff8800");
// Postcode 2007 - Broadway, Ultimo.<br>Sydney LGA is at -33.8823187,151.197131
// Postcode 2007 - Broadway, Ultimo.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2007 - Broadway, Ultimo.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2008 - Chippendale, Darlington, Golden Grove.<br>Sydney LGA is at -33.8933,151.189
// Postcode 2008 - Chippendale, Darlington, Golden Grove.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2008 - Chippendale, Darlington, Golden Grove.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2009 - Darling Island, Pyrmont.<br>Sydney LGA is at -33.8687895,151.1942171
// Postcode 2009 - Darling Island, Pyrmont.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2009 - Darling Island, Pyrmont.<br>Sydney LGA (Greater Sydney) cases: 1 0 0 1 0 1 2 0 0 0 3 1 1 0, total 10 ( 5 : 5)
// Postcode 2009 - Darling Island, Pyrmont.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-11
add_boxes("Postcode 2009 - Darling Island, Pyrmont. Sydney LGA (Greater Sydney)", "P", "Postcode 2009 - Darling Island, Pyrmont.<br>Sydney LGA (Greater Sydney)<p>10 cases between 2021-07-30 and 2021-08-11:<p>2021-07-30: 1<br>2021-08-02: 1<br>2021-08-04: 1<br>2021-08-05: 2<br>2021-08-09: 3<br>2021-08-10: 1<br>2021-08-11: 1<br><p>Week to week Reff=1", -33.8687895,151.1942171, [ 1, 0, 0, 1, 0, 1, 2, 0, 0, 0, 3, 1, 1, 0 ], "#ff8800");
// Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square.<br>Sydney LGA is at -33.881,151.217
// Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square.<br>Sydney LGA (Greater Sydney) cases: 1 0 1 0 0 1 1 0 0 0 0 0 0 0, total 4 ( 4 : 0)
// Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-05
add_boxes("Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square. Sydney LGA (Greater Sydney)", "P", "Postcode 2010 - Darlinghurst, Surry Hills, Taylor Square.<br>Sydney LGA (Greater Sydney)<p>4 cases between 2021-07-30 and 2021-08-05:<p>2021-07-30: 1<br>2021-08-01: 1<br>2021-08-04: 1<br>2021-08-05: 1<br><p>Week to week Reff=0", -33.881,151.217, [ 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo.<br>Sydney LGA is at -33.8704,151.2223
// Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 1 0, total 1 ( 0 : 1)
// Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-11 and 2021-08-11
add_boxes("Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo. Sydney LGA (Greater Sydney)", "P", "Postcode 2011 - Elizabeth Bay, Hmas Kuttabul, Kings Cross, Potts Point, Rushcutters Bay, Woolloomooloo.<br>Sydney LGA (Greater Sydney)<p>1 case on 2021-08-11<p>2021-08-11: 1<br>", -33.8704,151.2223, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 ], "#ff8800");
// Postcode 2015 - Alexandria, Beaconsfield, Eveleigh.<br>Sydney LGA is at -33.895,151.191
// Postcode 2015 - Alexandria, Beaconsfield, Eveleigh.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2015 - Alexandria, Beaconsfield, Eveleigh.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2016 - Redfern.<br>Sydney LGA is at -33.892215,151.205873
// Postcode 2016 - Redfern.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2016 - Redfern.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 2 0 0 0 0 0 1, total 3 ( 0 : 3)
// Postcode 2016 - Redfern.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-12
add_boxes("Postcode 2016 - Redfern. Sydney LGA (Greater Sydney)", "P", "Postcode 2016 - Redfern.<br>Sydney LGA (Greater Sydney)<p>3 cases between 2021-08-06 and 2021-08-12:<p>2021-08-06: 2<br>2021-08-12: 1<br>", -33.892215,151.205873, [ 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1 ], "#ff8800");
// Postcode 2017 - Waterloo, Zetland.<br>Sydney LGA is at -33.908,151.2105
// Postcode 2017 - Waterloo, Zetland.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2017 - Waterloo, Zetland.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 2 0 0 0 1 0 0 0 0 0 0, total 3 ( 2 : 1)
// Postcode 2017 - Waterloo, Zetland.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-02 and 2021-08-06
add_boxes("Postcode 2017 - Waterloo, Zetland. Sydney LGA (Greater Sydney)", "P", "Postcode 2017 - Waterloo, Zetland.<br>Sydney LGA (Greater Sydney)<p>3 cases between 2021-08-02 and 2021-08-06:<p>2021-08-02: 2<br>2021-08-06: 1<br><p>Week to week Reff=0.5", -33.908,151.2105, [ 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2018 - Eastlakes, Rosebery.<br>Sydney LGA is at -33.9221918,151.201678
// Postcode 2018 - Eastlakes, Rosebery.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2018 - Eastlakes, Rosebery.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 1 0 0 0, total 1 ( 0 : 1)
// Postcode 2018 - Eastlakes, Rosebery.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-09 and 2021-08-09
add_boxes("Postcode 2018 - Eastlakes, Rosebery. Sydney LGA (Greater Sydney)", "P", "Postcode 2018 - Eastlakes, Rosebery.<br>Sydney LGA (Greater Sydney)<p>1 case on 2021-08-09<p>2021-08-09: 1<br>", -33.9221918,151.201678, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 ], "#ff8800");
// Postcode 2019 - Banksmeadow, Botany.<br>Bayside LGA is at -33.9469267,151.1973167
// Postcode 2019 - Banksmeadow, Botany.<br>Bayside LGA (Area of concern) is #ff0000 hard locked down
// Postcode 2019 - Banksmeadow, Botany.<br>Bayside LGA (Area of concern) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport.<br>Bayside LGA is at -33.9399228,151.1752764
// Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport.<br>Bayside LGA (Area of concern) is #ff0000 hard locked down
// Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport.<br>Bayside LGA (Area of concern) cases: 2 0 0 0 0 0 0 0 0 0 0 0 0 0, total 2 ( 2 : 0)
// Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport.<br>Bayside LGA (Area of concern): cases all fall between 2021-07-30 and 2021-07-30
add_boxes("Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport. Bayside LGA (Area of concern)", "P", "Postcode 2020 - Mascot, Sydney Domestic Airport, Sydney International Airport.<br>Bayside LGA (Area of concern)<p>2 cases on 2021-07-30<p>2021-07-30: 2<br><p>Week to week Reff=0", -33.9399228,151.1752764, [ 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff0000");
// Postcode 2021 - Centennial Park, Moore Park, Paddington.<br>Woollahra LGA is at -33.8850215,151.2262353
// Postcode 2021 - Centennial Park, Moore Park, Paddington.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2021 - Centennial Park, Moore Park, Paddington.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park.<br>Waverley LGA is at -33.901,151.248
// Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park.<br>Waverley LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park.<br>Waverley LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 1 1 0 0 0 0 0, total 2 ( 0 : 2)
// Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park.<br>Waverley LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-07
add_boxes("Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park. Waverley LGA (Greater Sydney)", "P", "Postcode 2022 - Bondi Junction, Bondi Junction Plaza, Queens Park.<br>Waverley LGA (Greater Sydney)<p>2 cases on 2021-08-06 and 2021-08-07:<p>2021-08-06: 1<br>2021-08-07: 1<br>", -33.901,151.248, [ 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2023 - Bellevue Hill.<br>Woollahra LGA is at -33.8826955,151.2539627
// Postcode 2023 - Bellevue Hill.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2023 - Bellevue Hill.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 1, total 1 ( 0 : 1)
// Postcode 2023 - Bellevue Hill.<br>Woollahra LGA (Greater Sydney): cases all fall between 2021-08-12 and 2021-08-12
add_boxes("Postcode 2023 - Bellevue Hill. Woollahra LGA (Greater Sydney)", "P", "Postcode 2023 - Bellevue Hill.<br>Woollahra LGA (Greater Sydney)<p>1 case on 2021-08-12<p>2021-08-12: 1<br>", -33.8826955,151.2539627, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 ], "#ff8800");
// Postcode 2024 - Bronte, Charing Cross, Waverley.<br>Waverley LGA is at -33.899693,151.2554202
// Postcode 2024 - Bronte, Charing Cross, Waverley.<br>Waverley LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2024 - Bronte, Charing Cross, Waverley.<br>Waverley LGA (Greater Sydney) cases: 0 0 1 2 0 0 1 0 0 0 1 0 0 0, total 5 ( 4 : 1)
// Postcode 2024 - Bronte, Charing Cross, Waverley.<br>Waverley LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-09
add_boxes("Postcode 2024 - Bronte, Charing Cross, Waverley. Waverley LGA (Greater Sydney)", "P", "Postcode 2024 - Bronte, Charing Cross, Waverley.<br>Waverley LGA (Greater Sydney)<p>5 cases between 2021-08-01 and 2021-08-09:<p>2021-08-01: 1<br>2021-08-02: 2<br>2021-08-05: 1<br>2021-08-09: 1<br><p>Week to week Reff=0.25", -33.899693,151.2554202, [ 0, 0, 1, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ], "#ff8800");
// Postcode 2025 - Woollahra.<br>Woollahra LGA is at -33.8865002,151.2437606
// Postcode 2025 - Woollahra.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2025 - Woollahra.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 1 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2025 - Woollahra.<br>Woollahra LGA (Greater Sydney): cases all fall between 2021-08-08 and 2021-08-08
add_boxes("Postcode 2025 - Woollahra. Woollahra LGA (Greater Sydney)", "P", "Postcode 2025 - Woollahra.<br>Woollahra LGA (Greater Sydney)<p>1 case on 2021-08-08<p>2021-08-08: 1<br>", -33.8865002,151.2437606, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama.<br>Waverley LGA is at -33.898,151.268
// Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama.<br>Waverley LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama.<br>Waverley LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 1 1 2 3 1 1, total 9 ( 0 : 9)
// Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama.<br>Waverley LGA (Greater Sydney): cases all fall between 2021-08-07 and 2021-08-12
add_boxes("Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama. Waverley LGA (Greater Sydney)", "P", "Postcode 2026 - Ben Buckler, Bondi, Bondi Beach, North Bondi, Tamarama.<br>Waverley LGA (Greater Sydney)<p>9 cases between 2021-08-07 and 2021-08-12:<p>2021-08-07: 1<br>2021-08-08: 1<br>2021-08-09: 2<br>2021-08-10: 3<br>2021-08-11: 1<br>2021-08-12: 1<br>", -33.898,151.268, [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 1, 1 ], "#ff8800");
// Postcode 2027 - Darling Point, Edgecliff, Hmas Rushcutters, Point Piper.<br>Woollahra LGA is at -33.87045,151.25097
// Postcode 2027 - Darling Point, Edgecliff, Hmas Rushcutters, Point Piper.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2027 - Darling Point, Edgecliff, Hmas Rushcutters, Point Piper.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2028 - Double Bay.<br>Woollahra LGA is at -33.8775,151.2412
// Postcode 2028 - Double Bay.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2028 - Double Bay.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2029 - Rose Bay.<br>Woollahra LGA is at -33.8754209,151.265623
// Postcode 2029 - Rose Bay.<br>Woollahra LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2029 - Rose Bay.<br>Woollahra LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 1 3 0 1 0, total 5 ( 0 : 5)
// Postcode 2029 - Rose Bay.<br>Woollahra LGA (Greater Sydney): cases all fall between 2021-08-08 and 2021-08-11
add_boxes("Postcode 2029 - Rose Bay. Woollahra LGA (Greater Sydney)", "P", "Postcode 2029 - Rose Bay.<br>Woollahra LGA (Greater Sydney)<p>5 cases between 2021-08-08 and 2021-08-11:<p>2021-08-08: 1<br>2021-08-09: 3<br>2021-08-11: 1<br>", -33.8754209,151.265623, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 1, 0 ], "#ff8800");
// Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay.<br>Waverley LGA is at -33.8398183,151.2816573
// Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay.<br>Waverley LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay.<br>Waverley LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay.<br>Waverley LGA (Greater Sydney): cases all fall between 2021-08-10 and 2021-08-10
add_boxes("Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay. Waverley LGA (Greater Sydney)", "P", "Postcode 2030 - Diamond Bay, Dover Heights, Hmas Watson, Rose Bay North, Vaucluse, Watsons Bay.<br>Waverley LGA (Greater Sydney)<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -33.8398183,151.2816573, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#ff8800");
// Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls.<br>Randwick LGA is at -33.9203899,151.2438854
// Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls.<br>Randwick LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 1 1 0 0, total 2 ( 0 : 2)
// Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls.<br>Randwick LGA (Greater Sydney): cases all fall between 2021-08-09 and 2021-08-10
add_boxes("Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls. Randwick LGA (Greater Sydney)", "P", "Postcode 2031 - Clovelly, Clovelly West, Randwick, St Pauls.<br>Randwick LGA (Greater Sydney)<p>2 cases on 2021-08-09 and 2021-08-10:<p>2021-08-09: 1<br>2021-08-10: 1<br>", -33.9203899,151.2438854, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0 ], "#ff8800");
// Postcode 2032 - Daceyville, Kingsford.<br>Randwick LGA is at -33.92457,151.22765
// Postcode 2032 - Daceyville, Kingsford.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2032 - Daceyville, Kingsford.<br>Randwick LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2033 - Kensington.<br>Randwick LGA is at -33.9096151,151.2189869
// Postcode 2033 - Kensington.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2033 - Kensington.<br>Randwick LGA (Greater Sydney) cases: 1 0 0 0 0 0 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Postcode 2033 - Kensington.<br>Randwick LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-07-30
add_boxes("Postcode 2033 - Kensington. Randwick LGA (Greater Sydney)", "P", "Postcode 2033 - Kensington.<br>Randwick LGA (Greater Sydney)<p>1 case on 2021-07-30<p>2021-07-30: 1<br><p>Week to week Reff=0", -33.9096151,151.2189869, [ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2034 - Coogee, South Coogee.<br>Randwick LGA is at -33.933,151.259
// Postcode 2034 - Coogee, South Coogee.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2034 - Coogee, South Coogee.<br>Randwick LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 3 0 1 0, total 4 ( 0 : 4)
// Postcode 2034 - Coogee, South Coogee.<br>Randwick LGA (Greater Sydney): cases all fall between 2021-08-09 and 2021-08-11
add_boxes("Postcode 2034 - Coogee, South Coogee. Randwick LGA (Greater Sydney)", "P", "Postcode 2034 - Coogee, South Coogee.<br>Randwick LGA (Greater Sydney)<p>4 cases between 2021-08-09 and 2021-08-11:<p>2021-08-09: 3<br>2021-08-11: 1<br>", -33.933,151.259, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0 ], "#ff8800");
// Postcode 2035 - Maroubra, Maroubra South, Pagewood.<br>Randwick LGA is at -33.9406443,151.2154524
// Postcode 2035 - Maroubra, Maroubra South, Pagewood.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2035 - Maroubra, Maroubra South, Pagewood.<br>Randwick LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 1 0 1 1 0 0 2, total 5 ( 0 : 5)
// Postcode 2035 - Maroubra, Maroubra South, Pagewood.<br>Randwick LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-12
add_boxes("Postcode 2035 - Maroubra, Maroubra South, Pagewood. Randwick LGA (Greater Sydney)", "P", "Postcode 2035 - Maroubra, Maroubra South, Pagewood.<br>Randwick LGA (Greater Sydney)<p>5 cases between 2021-08-06 and 2021-08-12:<p>2021-08-06: 1<br>2021-08-08: 1<br>2021-08-09: 1<br>2021-08-12: 2<br>", -33.9406443,151.2154524, [ 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 2 ], "#ff8800");
// Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany.<br>Randwick LGA is at -33.976,151.218
// Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany.<br>Randwick LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany.<br>Randwick LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 2 0, total 2 ( 0 : 2)
// Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany.<br>Randwick LGA (Greater Sydney): cases all fall between 2021-08-11 and 2021-08-11
add_boxes("Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany. Randwick LGA (Greater Sydney)", "P", "Postcode 2036 - Chifley, Eastgardens, Hillsdale, La Perouse, Little Bay, Malabar, Matraville, Phillip Bay, Port Botany.<br>Randwick LGA (Greater Sydney)<p>2 cases on 2021-08-11<p>2021-08-11: 2<br>", -33.976,151.218, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0 ], "#ff8800");
// Postcode 2037 - Forest Lodge, Glebe.<br>Sydney LGA is at -33.8797767,151.1869715
// Postcode 2037 - Forest Lodge, Glebe.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2037 - Forest Lodge, Glebe.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 1 0 0 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2037 - Forest Lodge, Glebe.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-06
add_boxes("Postcode 2037 - Forest Lodge, Glebe. Sydney LGA (Greater Sydney)", "P", "Postcode 2037 - Forest Lodge, Glebe.<br>Sydney LGA (Greater Sydney)<p>1 case on 2021-08-06<p>2021-08-06: 1<br>", -33.8797767,151.1869715, [ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2038 - Annandale.<br>Inner West LGA is at -33.8824062,151.1723645
// Postcode 2038 - Annandale.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2038 - Annandale.<br>Inner West LGA (Greater Sydney) cases: 1 0 1 0 0 0 0 0 0 0 0 0 0 0, total 2 ( 2 : 0)
// Postcode 2038 - Annandale.<br>Inner West LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-01
add_boxes("Postcode 2038 - Annandale. Inner West LGA (Greater Sydney)", "P", "Postcode 2038 - Annandale.<br>Inner West LGA (Greater Sydney)<p>2 cases on 2021-07-30 and 2021-08-01:<p>2021-07-30: 1<br>2021-08-01: 1<br><p>Week to week Reff=0", -33.8824062,151.1723645, [ 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2039 - Rozelle.<br>Inner West LGA is at -33.8661553,151.1738213
// Postcode 2039 - Rozelle.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2039 - Rozelle.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2040 - Leichhardt, Lilyfield.<br>Inner West LGA is at -33.874345,151.164693
// Postcode 2040 - Leichhardt, Lilyfield.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2040 - Leichhardt, Lilyfield.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 1 1, total 2 ( 0 : 2)
// Postcode 2040 - Leichhardt, Lilyfield.<br>Inner West LGA (Greater Sydney): cases all fall between 2021-08-11 and 2021-08-12
add_boxes("Postcode 2040 - Leichhardt, Lilyfield. Inner West LGA (Greater Sydney)", "P", "Postcode 2040 - Leichhardt, Lilyfield.<br>Inner West LGA (Greater Sydney)<p>2 cases on 2021-08-11 and 2021-08-12:<p>2021-08-11: 1<br>2021-08-12: 1<br>", -33.874345,151.164693, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1 ], "#ff8800");
// Postcode 2041 - Balmain, Balmain East, Birchgrove.<br>Inner West LGA is at -33.85275,151.18024
// Postcode 2041 - Balmain, Balmain East, Birchgrove.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2041 - Balmain, Balmain East, Birchgrove.<br>Inner West LGA (Greater Sydney) cases: 0 1 0 0 1 0 0 0 0 0 1 0 0 0, total 3 ( 2 : 1)
// Postcode 2041 - Balmain, Balmain East, Birchgrove.<br>Inner West LGA (Greater Sydney): cases all fall between 2021-07-31 and 2021-08-09
add_boxes("Postcode 2041 - Balmain, Balmain East, Birchgrove. Inner West LGA (Greater Sydney)", "P", "Postcode 2041 - Balmain, Balmain East, Birchgrove.<br>Inner West LGA (Greater Sydney)<p>3 cases between 2021-07-31 and 2021-08-09:<p>2021-07-31: 1<br>2021-08-03: 1<br>2021-08-09: 1<br><p>Week to week Reff=0.5", -33.85275,151.18024, [ 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0 ], "#ff8800");
// Postcode 2042 - Enmore, Newtown.<br>Sydney LGA is at -33.8978149,151.1785003
// Postcode 2042 - Enmore, Newtown.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2042 - Enmore, Newtown.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 1 0 1 0 0 0 1 0 0 0, total 3 ( 2 : 1)
// Postcode 2042 - Enmore, Newtown.<br>Sydney LGA (Greater Sydney): cases all fall between 2021-08-03 and 2021-08-09
add_boxes("Postcode 2042 - Enmore, Newtown. Sydney LGA (Greater Sydney)", "P", "Postcode 2042 - Enmore, Newtown.<br>Sydney LGA (Greater Sydney)<p>3 cases between 2021-08-03 and 2021-08-09:<p>2021-08-03: 1<br>2021-08-05: 1<br>2021-08-09: 1<br><p>Week to week Reff=0.5", -33.8978149,151.1785003, [ 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0 ], "#ff8800");
// Postcode 2043 - Erskineville.<br>Sydney LGA is at -33.9023649,151.1854757
// Postcode 2043 - Erskineville.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2043 - Erskineville.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2044 - St Peters, Sydenham, Tempe.<br>Inner West LGA is at -33.925048,151.1604169
// Postcode 2044 - St Peters, Sydenham, Tempe.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2044 - St Peters, Sydenham, Tempe.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 2 0 0 0 1 2 0 1, total 6 ( 2 : 4)
// Postcode 2044 - St Peters, Sydenham, Tempe.<br>Inner West LGA (Greater Sydney): cases all fall between 2021-08-05 and 2021-08-12
add_boxes("Postcode 2044 - St Peters, Sydenham, Tempe. Inner West LGA (Greater Sydney)", "P", "Postcode 2044 - St Peters, Sydenham, Tempe.<br>Inner West LGA (Greater Sydney)<p>6 cases between 2021-08-05 and 2021-08-12:<p>2021-08-05: 2<br>2021-08-09: 1<br>2021-08-10: 2<br>2021-08-12: 1<br><p>Week to week Reff=2", -33.925048,151.1604169, [ 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 2, 0, 1 ], "#ff8800");
// Postcode 2045 - Haberfield.<br>Inner West LGA is at -33.8786088,151.1374068
// Postcode 2045 - Haberfield.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2045 - Haberfield.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba.<br>Canada Bay LGA is at -33.8574937,151.1323094
// Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba.<br>Canada Bay LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba.<br>Canada Bay LGA (Greater Sydney) cases: 0 0 1 0 0 1 0 0 0 0 0 0 1 0, total 3 ( 2 : 1)
// Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba.<br>Canada Bay LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-11
add_boxes("Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba. Canada Bay LGA (Greater Sydney)", "P", "Postcode 2046 - Abbotsford, Canada Bay, Chiswick, Five Dock, Rodd Point, Russell Lea, Wareemba.<br>Canada Bay LGA (Greater Sydney)<p>3 cases between 2021-08-01 and 2021-08-11:<p>2021-08-01: 1<br>2021-08-04: 1<br>2021-08-11: 1<br><p>Week to week Reff=0.5", -33.8574937,151.1323094, [ 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0 ], "#ff8800");
// Postcode 2047 - Drummoyne.<br>Canada Bay LGA is at -33.8523805,151.1548847
// Postcode 2047 - Drummoyne.<br>Canada Bay LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2047 - Drummoyne.<br>Canada Bay LGA (Greater Sydney) cases: 0 0 1 0 0 0 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Postcode 2047 - Drummoyne.<br>Canada Bay LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-01
add_boxes("Postcode 2047 - Drummoyne. Canada Bay LGA (Greater Sydney)", "P", "Postcode 2047 - Drummoyne.<br>Canada Bay LGA (Greater Sydney)<p>1 case on 2021-08-01<p>2021-08-01: 1<br><p>Week to week Reff=0", -33.8523805,151.1548847, [ 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2048 - Stanmore, Westgate.<br>Inner West LGA is at -33.8812,151.171
// Postcode 2048 - Stanmore, Westgate.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2048 - Stanmore, Westgate.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2049 - Lewisham, Petersham, Petersham North.<br>Inner West LGA is at -33.8962174,151.1541497
// Postcode 2049 - Lewisham, Petersham, Petersham North.<br>Inner West LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2049 - Lewisham, Petersham, Petersham North.<br>Inner West LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2050 - Camperdown, Missenden Road.<br>Sydney LGA is at -33.8896644,151.1821576
// Postcode 2050 - Camperdown, Missenden Road.<br>Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2050 - Camperdown, Missenden Road.<br>Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2060 - Hmas Platypus, Hmas Waterhen, Lavender Bay, Mcmahons Point, North Sydney, North Sydney Shoppingworld, Waverton.<br>North Sydney LGA is at -33.84016,151.19543
// Postcode 2060 - Hmas Platypus, Hmas Waterhen, Lavender Bay, Mcmahons Point, North Sydney, North Sydney Shoppingworld, Waverton.<br>North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2060 - Hmas Platypus, Hmas Waterhen, Lavender Bay, Mcmahons Point, North Sydney, North Sydney Shoppingworld, Waverton.<br>North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2061 - Kirribilli, Milsons Point.<br>North Sydney LGA is at -33.84765,151.21201
// Postcode 2061 - Kirribilli, Milsons Point.<br>North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2061 - Kirribilli, Milsons Point.<br>North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2062 - Cammeray.<br>North Sydney LGA is at -33.8228068,151.2146155
// Postcode 2062 - Cammeray.<br>North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2062 - Cammeray.<br>North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2063 - Northbridge.<br>Willoughby LGA is at -33.8123999,151.2189869
// Postcode 2063 - Northbridge.<br>Willoughby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2063 - Northbridge.<br>Willoughby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2064 - Artarmon.<br>Willoughby LGA is at -33.8086312,151.1840188
// Postcode 2064 - Artarmon.<br>Willoughby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2064 - Artarmon.<br>Willoughby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft.<br>Lane Cove LGA is at -33.83356,151.19128
// Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft.<br>Lane Cove LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft.<br>Lane Cove LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 1 0 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft.<br>Lane Cove LGA (Greater Sydney): cases all fall between 2021-08-07 and 2021-08-07
add_boxes("Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft. Lane Cove LGA (Greater Sydney)", "P", "Postcode 2065 - Crows Nest, Gore Hill, Greenwich, Naremburn, Royal North Shore Hospital, St Leonards, Wollstonecraft.<br>Lane Cove LGA (Greater Sydney)<p>1 case on 2021-08-07<p>2021-08-07: 1<br>", -33.83356,151.19128, [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview.<br>Lane Cove LGA is at -33.82466,151.1622
// Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview.<br>Lane Cove LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview.<br>Lane Cove LGA (Greater Sydney) cases: 0 0 1 0 0 0 0 0 0 0 2 1 0 1, total 5 ( 1 : 4)
// Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview.<br>Lane Cove LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-12
add_boxes("Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview. Lane Cove LGA (Greater Sydney)", "P", "Postcode 2066 - Lane Cove, Lane Cove North, Lane Cove West, Linley Point, Longueville, Northwood, Osborne Park, Riverview.<br>Lane Cove LGA (Greater Sydney)<p>5 cases between 2021-08-01 and 2021-08-12:<p>2021-08-01: 1<br>2021-08-09: 2<br>2021-08-10: 1<br>2021-08-12: 1<br><p>Week to week Reff=4", -33.82466,151.1622, [ 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 1 ], "#ff8800");
// Postcode 2067 - Chatswood, Chatswood West.<br>Willoughby LGA is at -33.7966739,151.1621677
// Postcode 2067 - Chatswood, Chatswood West.<br>Willoughby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2067 - Chatswood, Chatswood West.<br>Willoughby LGA (Greater Sydney) cases: 0 0 1 2 3 0 0 1 0 0 0 0 0 0, total 7 ( 6 : 1)
// Postcode 2067 - Chatswood, Chatswood West.<br>Willoughby LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-06
add_boxes("Postcode 2067 - Chatswood, Chatswood West. Willoughby LGA (Greater Sydney)", "P", "Postcode 2067 - Chatswood, Chatswood West.<br>Willoughby LGA (Greater Sydney)<p>7 cases between 2021-08-01 and 2021-08-06:<p>2021-08-01: 1<br>2021-08-02: 2<br>2021-08-03: 3<br>2021-08-06: 1<br><p>Week to week Reff=0.17", -33.7966739,151.1621677, [ 0, 0, 1, 2, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2068 - Castlecrag, Middle Cove, North Willoughby, Willoughby, Willoughby East, Willoughby North.<br>Willoughby LGA is at -33.795,151.204
// Postcode 2068 - Castlecrag, Middle Cove, North Willoughby, Willoughby, Willoughby East, Willoughby North.<br>Willoughby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2068 - Castlecrag, Middle Cove, North Willoughby, Willoughby, Willoughby East, Willoughby North.<br>Willoughby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2069 - Castle Cove, Roseville, Roseville Chase.<br>Ku-ring-gai LGA is at -33.7755896,151.2000449
// Postcode 2069 - Castle Cove, Roseville, Roseville Chase.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2069 - Castle Cove, Roseville, Roseville Chase.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 1 0 0 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2069 - Castle Cove, Roseville, Roseville Chase.<br>Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-06 and 2021-08-06
add_boxes("Postcode 2069 - Castle Cove, Roseville, Roseville Chase. Ku-ring-gai LGA (Greater Sydney)", "P", "Postcode 2069 - Castle Cove, Roseville, Roseville Chase.<br>Ku-ring-gai LGA (Greater Sydney)<p>1 case on 2021-08-06<p>2021-08-06: 1<br>", -33.7755896,151.2000449, [ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2070 - East Lindfield, Lindfield, Lindfield West.<br>Ku-ring-gai LGA is at -33.7816232,151.1490935
// Postcode 2070 - East Lindfield, Lindfield, Lindfield West.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2070 - East Lindfield, Lindfield, Lindfield West.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 1 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2070 - East Lindfield, Lindfield, Lindfield West.<br>Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-08 and 2021-08-08
add_boxes("Postcode 2070 - East Lindfield, Lindfield, Lindfield West. Ku-ring-gai LGA (Greater Sydney)", "P", "Postcode 2070 - East Lindfield, Lindfield, Lindfield West.<br>Ku-ring-gai LGA (Greater Sydney)<p>1 case on 2021-08-08<p>2021-08-08: 1<br>", -33.7816232,151.1490935, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2071 - East Killara, Killara.<br>Ku-ring-gai LGA is at -33.76864,151.16347
// Postcode 2071 - East Killara, Killara.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2071 - East Killara, Killara.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2072 - Gordon.<br>Ku-ring-gai LGA is at -33.7551473,151.1548847
// Postcode 2072 - Gordon.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2072 - Gordon.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2073 - Pymble, West Pymble.<br>Ku-ring-gai LGA is at -33.7619959,151.1280668
// Postcode 2073 - Pymble, West Pymble.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2073 - Pymble, West Pymble.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 1, total 1 ( 0 : 1)
// Postcode 2073 - Pymble, West Pymble.<br>Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-12 and 2021-08-12
add_boxes("Postcode 2073 - Pymble, West Pymble. Ku-ring-gai LGA (Greater Sydney)", "P", "Postcode 2073 - Pymble, West Pymble.<br>Ku-ring-gai LGA (Greater Sydney)<p>1 case on 2021-08-12<p>2021-08-12: 1<br>", -33.7619959,151.1280668, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 ], "#ff8800");
// Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee.<br>Ku-ring-gai LGA is at -33.7289366,151.1218346
// Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 1 0 0 0 0 0, total 1 ( 0 : 1)
// Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee.<br>Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-07 and 2021-08-07
add_boxes("Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee. Ku-ring-gai LGA (Greater Sydney)", "P", "Postcode 2074 - Bobbin Head, North Turramurra, South Turramurra, Turramurra, Warrawee.<br>Ku-ring-gai LGA (Greater Sydney)<p>1 case on 2021-08-07<p>2021-08-07: 1<br>", -33.7289366,151.1218346, [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2075 - North St Ives, St Ives, St Ives Chase.<br>Ku-ring-gai LGA is at -33.711,151.1595
// Postcode 2075 - North St Ives, St Ives, St Ives Chase.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2075 - North St Ives, St Ives, St Ives Chase.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga.<br>Ku-ring-gai LGA is at -33.7186308,151.1103686
// Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga.<br>Ku-ring-gai LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga.<br>Ku-ring-gai LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 1 1 0 0, total 2 ( 0 : 2)
// Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga.<br>Ku-ring-gai LGA (Greater Sydney): cases all fall between 2021-08-09 and 2021-08-10
add_boxes("Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga. Ku-ring-gai LGA (Greater Sydney)", "P", "Postcode 2076 - Normanhurst, North Wahroonga, Wahroonga.<br>Ku-ring-gai LGA (Greater Sydney)<p>2 cases on 2021-08-09 and 2021-08-10:<p>2021-08-09: 1<br>2021-08-10: 1<br>", -33.7186308,151.1103686, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0 ], "#ff8800");
// Postcode 2077 - Asquith, Hornsby, Hornsby Heights, Waitara.<br>Hornsby LGA is at -33.7083472,151.1068252
// Postcode 2077 - Asquith, Hornsby, Hornsby Heights, Waitara.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2077 - Asquith, Hornsby, Hornsby Heights, Waitara.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2079 - Mount Colah.<br>Hornsby LGA is at -33.6709087,151.125756
// Postcode 2079 - Mount Colah.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2079 - Mount Colah.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2080 - Mount Kuring-Gai.<br>Hornsby LGA is at -33.6500724,151.134494
// Postcode 2080 - Mount Kuring-Gai.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2080 - Mount Kuring-Gai.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2081 - Berowra, Cowan.<br>Hornsby LGA is at -33.5879078,151.16854
// Postcode 2081 - Berowra, Cowan.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2081 - Berowra, Cowan.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2082 - Berowra Creek, Berowra Heights, Berowra Waters.<br>Hornsby LGA is at -33.602344,151.120659
// Postcode 2082 - Berowra Creek, Berowra Heights, Berowra Waters.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2082 - Berowra Creek, Berowra Heights, Berowra Waters.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2083 - Bar Point, Brooklyn, Cheero Point, Cogra Bay, Dangar Island, Milsons Passage, Mooney Mooney.<br>Hornsby LGA is at -33.523,151.201
// Postcode 2083 - Bar Point, Brooklyn, Cheero Point, Cogra Bay, Dangar Island, Milsons Passage, Mooney Mooney.<br>Hornsby LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2083 - Bar Point, Brooklyn, Cheero Point, Cogra Bay, Dangar Island, Milsons Passage, Mooney Mooney.<br>Hornsby LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2084 - Akuna Bay, Cottage Point, Duffys Forest, Terrey Hills.<br>Northern Beaches LGA is at -33.683,151.223
// Postcode 2084 - Akuna Bay, Cottage Point, Duffys Forest, Terrey Hills.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2084 - Akuna Bay, Cottage Point, Duffys Forest, Terrey Hills.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2085 - Belrose, Belrose West, Davidson.<br>Northern Beaches LGA is at -33.73801,151.19297
// Postcode 2085 - Belrose, Belrose West, Davidson.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2085 - Belrose, Belrose West, Davidson.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 1 2 0 0 0 0, total 3 ( 0 : 3)
// Postcode 2085 - Belrose, Belrose West, Davidson.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-07 and 2021-08-08
add_boxes("Postcode 2085 - Belrose, Belrose West, Davidson. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2085 - Belrose, Belrose West, Davidson.<br>Northern Beaches LGA (Greater Sydney)<p>3 cases between 2021-08-07 and 2021-08-08:<p>2021-08-07: 1<br>2021-08-08: 2<br>", -33.73801,151.19297, [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2086 - Frenchs Forest, Frenchs Forest East.<br>Northern Beaches LGA is at -33.7507736,151.2406985
// Postcode 2086 - Frenchs Forest, Frenchs Forest East.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2086 - Frenchs Forest, Frenchs Forest East.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// Postcode 2086 - Frenchs Forest, Frenchs Forest East.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-10 and 2021-08-10
add_boxes("Postcode 2086 - Frenchs Forest, Frenchs Forest East. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2086 - Frenchs Forest, Frenchs Forest East.<br>Northern Beaches LGA (Greater Sydney)<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -33.7507736,151.2406985, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#ff8800");
// Postcode 2087 - Forestville, Killarney Heights.<br>Northern Beaches LGA is at -33.7742,151.2155
// Postcode 2087 - Forestville, Killarney Heights.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2087 - Forestville, Killarney Heights.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 1 2 0 0 0 0, total 3 ( 0 : 3)
// Postcode 2087 - Forestville, Killarney Heights.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-07 and 2021-08-08
add_boxes("Postcode 2087 - Forestville, Killarney Heights. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2087 - Forestville, Killarney Heights.<br>Northern Beaches LGA (Greater Sydney)<p>3 cases between 2021-08-07 and 2021-08-08:<p>2021-08-07: 1<br>2021-08-08: 2<br>", -33.7742,151.2155, [ 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2088 - Mosman, Spit Junction.<br>Mosman LGA is at -33.8244677,151.2409774
// Postcode 2088 - Mosman, Spit Junction.<br>Mosman LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2088 - Mosman, Spit Junction.<br>Mosman LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction.<br>North Sydney LGA is at -33.8311445,151.2226991
// Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction.<br>North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction.<br>North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 1 0 0, total 1 ( 0 : 1)
// Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction.<br>North Sydney LGA (Greater Sydney): cases all fall between 2021-08-10 and 2021-08-10
add_boxes("Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction. North Sydney LGA (Greater Sydney)", "P", "Postcode 2089 - Kurraba Point, Neutral Bay, Neutral Bay Junction.<br>North Sydney LGA (Greater Sydney)<p>1 case on 2021-08-10<p>2021-08-10: 1<br>", -33.8311445,151.2226991, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0 ], "#ff8800");
// Postcode 2090 - Cremorne, Cremorne Junction, Cremorne Point.<br>North Sydney LGA is at -33.84076,151.22789
// Postcode 2090 - Cremorne, Cremorne Junction, Cremorne Point.<br>North Sydney LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2090 - Cremorne, Cremorne Junction, Cremorne Point.<br>North Sydney LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2092 - Seaforth.<br>Northern Beaches LGA is at -33.7927181,151.2423032
// Postcode 2092 - Seaforth.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2092 - Seaforth.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah.<br>Northern Beaches LGA is at -33.785604,151.2495903
// Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 1 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-04 and 2021-08-04
add_boxes("Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2093 - Balgowlah, Balgowlah Heights, Clontarf, Manly Vale, North Balgowlah.<br>Northern Beaches LGA (Greater Sydney)<p>1 case on 2021-08-04<p>2021-08-04: 1<br><p>Week to week Reff=0", -33.785604,151.2495903, [ 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2094 - Fairlight.<br>Northern Beaches LGA is at -33.7940757,151.2729111
// Postcode 2094 - Fairlight.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2094 - Fairlight.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2095 - Manly, Manly East.<br>Northern Beaches LGA is at -33.8060158,151.2947775
// Postcode 2095 - Manly, Manly East.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2095 - Manly, Manly East.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 1 0 0 0 1 0 0 0 0 0 0 0, total 2 ( 2 : 0)
// Postcode 2095 - Manly, Manly East.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-05
add_boxes("Postcode 2095 - Manly, Manly East. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2095 - Manly, Manly East.<br>Northern Beaches LGA (Greater Sydney)<p>2 cases on 2021-08-01 and 2021-08-05:<p>2021-08-01: 1<br>2021-08-05: 1<br><p>Week to week Reff=0", -33.8060158,151.2947775, [ 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2096 - Curl Curl, Freshwater, Harbord, Queenscliff.<br>Northern Beaches LGA is at -33.7825,151.284722
// Postcode 2096 - Curl Curl, Freshwater, Harbord, Queenscliff.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2096 - Curl Curl, Freshwater, Harbord, Queenscliff.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights.<br>Northern Beaches LGA is at -33.7315,151.28016
// Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 1 0 0 0 0 0 0 0 3 0, total 4 ( 1 : 3)
// Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-03 and 2021-08-11
add_boxes("Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2097 - Collaroy, Collaroy Beach, Collaroy Plateau, Collaroy Plateau West, Long Reef, Wheeler Heights.<br>Northern Beaches LGA (Greater Sydney)<p>4 cases between 2021-08-03 and 2021-08-11:<p>2021-08-03: 1<br>2021-08-11: 3<br><p>Week to week Reff=3", -33.7315,151.28016, [ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0 ], "#ff8800");
// Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala.<br>Northern Beaches LGA is at -33.7586,151.29
// Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 1 0 0 0 3 0 0 0 0 0 0 0, total 4 ( 4 : 0)
// Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-01 and 2021-08-05
add_boxes("Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2099 - Cromer, Cromer Heights, Dee Why, Dee Why Beach, Narraweena, North Curl Curl, Wingala.<br>Northern Beaches LGA (Greater Sydney)<p>4 cases between 2021-08-01 and 2021-08-05:<p>2021-08-01: 1<br>2021-08-05: 3<br><p>Week to week Reff=0", -33.7586,151.29, [ 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall.<br>Northern Beaches LGA is at -33.7672145,151.2653692
// Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall.<br>Northern Beaches LGA (Greater Sydney) cases: 1 0 0 0 0 0 1 0 1 0 0 0 0 0, total 3 ( 2 : 1)
// Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-07
add_boxes("Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2100 - Allambie, Allambie Heights, Beacon Hill, Brookvale, North Manly, Oxford Falls, Warringah Mall.<br>Northern Beaches LGA (Greater Sydney)<p>3 cases between 2021-07-30 and 2021-08-07:<p>2021-07-30: 1<br>2021-08-05: 1<br>2021-08-07: 1<br><p>Week to week Reff=0.5", -33.7672145,151.2653692, [ 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen.<br>Northern Beaches LGA is at -33.7065,151.2884
// Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen.<br>Northern Beaches LGA (Greater Sydney) cases: 0 1 0 0 0 0 0 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-07-31 and 2021-07-31
add_boxes("Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2101 - Elanora Heights, Ingleside, Narrabeen, Narrabeen Peninsula, North Narrabeen.<br>Northern Beaches LGA (Greater Sydney)<p>1 case on 2021-07-31<p>2021-07-31: 1<br><p>Week to week Reff=0", -33.7065,151.2884, [ 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2102 - Warriewood, Warriewood Shopping Square.<br>Northern Beaches LGA is at -33.6957,151.296
// Postcode 2102 - Warriewood, Warriewood Shopping Square.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2102 - Warriewood, Warriewood Shopping Square.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2103 - Mona Vale.<br>Northern Beaches LGA is at -33.6757024,151.3064407
// Postcode 2103 - Mona Vale.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2103 - Mona Vale.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 1 0, total 1 ( 0 : 1)
// Postcode 2103 - Mona Vale.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-11 and 2021-08-11
add_boxes("Postcode 2103 - Mona Vale. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2103 - Mona Vale.<br>Northern Beaches LGA (Greater Sydney)<p>1 case on 2021-08-11<p>2021-08-11: 1<br>", -33.6757024,151.3064407, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 ], "#ff8800");
// Postcode 2104 - Bayview.<br>Northern Beaches LGA is at -33.6610245,151.2889461
// Postcode 2104 - Bayview.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2104 - Bayview.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2106 - Newport, Newport Beach.<br>Northern Beaches LGA is at -33.6533125,151.3234816
// Postcode 2106 - Newport, Newport Beach.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2106 - Newport, Newport Beach.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2107 - Avalon, Avalon Beach, Bilgola, Bilgola Beach, Bilgola Plateau, Careel Bay, Clareville, Paradise Beach, Taylors Point, Whale Beach.<br>Northern Beaches LGA is at -33.6131448,151.3304989
// Postcode 2107 - Avalon, Avalon Beach, Bilgola, Bilgola Beach, Bilgola Plateau, Careel Bay, Clareville, Paradise Beach, Taylors Point, Whale Beach.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2107 - Avalon, Avalon Beach, Bilgola, Bilgola Beach, Bilgola Plateau, Careel Bay, Clareville, Paradise Beach, Taylors Point, Whale Beach.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin.<br>Northern Beaches LGA is at -33.6049927,151.2866804
// Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin.<br>Northern Beaches LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin.<br>Northern Beaches LGA (Greater Sydney) cases: 0 0 0 0 0 0 1 0 0 0 0 0 0 0, total 1 ( 1 : 0)
// Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin.<br>Northern Beaches LGA (Greater Sydney): cases all fall between 2021-08-05 and 2021-08-05
add_boxes("Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin. Northern Beaches LGA (Greater Sydney)", "P", "Postcode 2108 - Coasters Retreat, Currawong Beach, Great Mackerel Beach, Morning Bay, Palm Beach, The Basin.<br>Northern Beaches LGA (Greater Sydney)<p>1 case on 2021-08-05<p>2021-08-05: 1<br><p>Week to week Reff=0", -33.6049927,151.2866804, [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 ], "#ff8800");
// Postcode 2110 - Hunters Hill, Hunters Hill West, Woolwich.<br>Hunters Hill LGA is at -33.8417,151.16968
// Postcode 2110 - Hunters Hill, Hunters Hill West, Woolwich.<br>Hunters Hill LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2111 - Boronia Park, Gladesville, Henley, Huntleys Cove, Huntleys Point, Monash Park, Tennyson Point.<br>Hunters Hill LGA is at -33.832435,151.116938
// Postcode 2111 - Boronia Park, Gladesville, Henley, Huntleys Cove, Huntleys Point, Monash Park, Tennyson Point.<br>Hunters Hill LGA cases: 0 0 0 0 0 0 0 0 0 0 0 0 0 0, total 0 ( 0 : 0)
// Postcode 2112 - Denistone East, Putney, Ryde.<br>Ryde LGA is at -33.8157466,151.1030164
// Postcode 2112 - Denistone East, Putney, Ryde.<br>Ryde LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2112 - Denistone East, Putney, Ryde.<br>Ryde LGA (Greater Sydney) cases: 2 1 1 1 0 0 0 0 1 3 0 2 2 3, total 16 ( 5 : 11)
// Postcode 2112 - Denistone East, Putney, Ryde.<br>Ryde LGA (Greater Sydney): cases all fall between 2021-07-30 and 2021-08-12
add_boxes("Postcode 2112 - Denistone East, Putney, Ryde. Ryde LGA (Greater Sydney)", "P", "Postcode 2112 - Denistone East, Putney, Ryde.<br>Ryde LGA (Greater Sydney)<p>16 cases between 2021-07-30 and 2021-08-12:<p>2021-07-30: 2<br>2021-07-31: 1<br>2021-08-01: 1<br>2021-08-02: 1<br>2021-08-07: 1<br>2021-08-08: 3<br>2021-08-10: 2<br>2021-08-11: 2<br>2021-08-12: 3<br><p>Week to week Reff=2.2", -33.8157466,151.1030164, [ 2, 1, 1, 1, 0, 0, 0, 0, 1, 3, 0, 2, 2, 3 ], "#ff8800");
// Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde.<br>Ryde LGA is at -33.7931778,151.1197879
// Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde.<br>Ryde LGA (Greater Sydney) is #ff8800 hard locked down
// Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde.<br>Ryde LGA (Greater Sydney) cases: 0 0 0 0 0 0 1 1 1 0 1 0 0 0, total 4 ( 1 : 3)
// Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde.<br>Ryde LGA (Greater Sydney): cases all fall between 2021-08-05 and 2021-08-09
add_boxes("Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde. Ryde LGA (Greater Sydney)", "P", "Postcode 2113 - Blenheim Road, East Ryde, Macquarie Centre, Macquarie Park, North Ryde.<br>Ryde LGA (Greater Sydney)<p>4 cases between 2021-08-05 and 2021-08-09:<p>2021-08-05: 1<br>2021-08-06: 1<br>2021-08-07: 1<br>2021-08-09: 1<br><p>Week to week Reff=3", -33.7931778,151.1197879, [ 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0 ], "#ff8800");