-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp_index.json
More file actions
1407 lines (1407 loc) · 81.7 KB
/
temp_index.json
File metadata and controls
1407 lines (1407 loc) · 81.7 KB
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
[
{
"id": "4",
"TemplateVer": "0.2.6",
"galacticPubsVer": "0.6.2",
"FirstPublicationDate": "2021-12-15 17:01:19",
"LastUpdated": "2022-02-10 16:29:33",
"GPCatalogPath": "https://catalog.galacticpolymath.com/lessons/galacticPubs/LESSON.json",
"ShortTitle": "femalesSing",
"PublicationStatus": "Live",
"RebuildAllMaterials": false,
"ReleaseDate": "2022-01-10",
"Title": "Females singing to be heard",
"Subtitle": "Challenging long-held assumptions about birdsong through data visualization",
"SponsorName": [
"Animal Behaviour",
"National Science Foundation",
"NSF"
],
"SponsoredBy": "- [The Animal Behaviour Society](https://www.animalbehaviorsociety.org/web/index.php), an international non-profit scientific society that encourages and promotes the professional study of animal behavior.\n- National Science Foundation",
"SponsorImage": {
"url": [
"https://catalog.galacticpolymath.com/lessons/galacticPubs/NSF_4-Color_bitmap_Logo.png",
"https://catalog.galacticpolymath.com/lessons/galacticPubs/sponsor_logo_41be63750b.png"
]
},
"CoverImage": {
"url": "https://catalog.galacticpolymath.com/lessons/galacticPubs/banner.png"
},
"Section": {
"overview": {
"__component": "lesson-plan.overview",
"EstLessonTime": "3 x 45 min",
"ForGrades": "Adapted for 5-6, 7-8, & 9-12",
"TargetSubject": "Math",
"Text": "#### Driving Question(s):\nWhat is the best way to visualize data? What is the best way to visualize data?\n#### Essential Question(s):\n1. How do our assumptions (biases) affect our conclusions?\n2. What are the pros and cons of scatterplots vs. histograms? 1. How do our assumptions (biases) affect our conclusions?\n2. What are the pros and cons of scatterplots vs. histograms?\n#### Learning Objective(s):\n1. Solve a cipher (a type of secret message)\n2. Learn and use new vocabulary\n3. Interpret a scatter plot\n4. Create a histogram from raw data\n5. Compare and contrast scatter plots and histograms\n6. Persevere, even when a task seems too hard 1. Solve a cipher (a type of secret message)\n2. Learn and use new vocabulary\n3. Interpret a scatter plot\n4. Create a histogram from raw data\n5. Compare and contrast scatter plots and histograms\n6. Persevere, even when a task seems too hard\n#### Lesson Hook:\nA Polymath Puzzle challenges students to decode the text parts of a graph, drawing them into a fascinating lesson about storytelling through data visuals. #### Lesson Hook:\nA Polymath Puzzle challenges students to decode the text parts of a graph, drawing them into a fascinating lesson about storytelling through data visuals.",
"Tags": [
{
"Value": "animal communication"
},
{
"Value": "barn swallows"
},
{
"Value": "birds"
},
{
"Value": "data literacy"
},
{
"Value": "dot plots"
},
{
"Value": "histograms"
},
{
"Value": "peer review"
},
{
"Value": "scatter plots"
},
{
"Value": "song"
},
{
"Value": "grit"
}
],
"SteamEpaulette": {
"url": "https://catalog.galacticpolymath.com/lessons/galacticPubs/GP-Learning-Epaulette.png"
},
"SteamEpaulette_vert": {
"url": "https://catalog.galacticpolymath.com/lessons/galacticPubs/GP-Learning-Epaulette_vert.png"
},
"Description": "This lesson teaches students about data visualization (how to read and interpret scatter plots, dot plots, and histograms), and connects to a broader theme of how our assumptions affect our conclusions. Students learn how scientists and birders alike have assumed for decades that most female birds don't sing. As students explore real data from a recent study, they will learn how this assumption could be reinforced by the fact that females sing much less than males, and further, how this biased oversight has limited our understanding of bird research from its very beginnings. [See Scientific Background](https://www.galacticpolymath.com/lessons/1/#background) for details.\n\nThe lesson will take 3 class periods for most learners. Students dive in with a data literacy puzzle, which we call a “Polymath Puzzle.” Students are given a figure from a current scientific study on barn swallows (a common bird across the world), but with text elements coded with an alphabetic shift (e.g. each letter is shifted: A to B, B to C, and so on). They have to work in teams (or individually) to decipher the messages, and then try to understand the figure. This is a high-level data literacy task that piques students’ natural love of puzzle-solving, while working on GRIT/grappling and the [21st Century Skills (4 Cs)](https://www.aeseducation.com/blog/four-cs-21st-century-skills). Videos guide students through each stage of the Polymath Puzzle. In Parts 2 and 3, students create and interpret histograms from the same data, allowing for a deeper understanding of the pros and cons of scatter plots and histograms for visualizing data patterns. The culminating task is for students to synthesize the conclusions from the two types of graph, along with additional background information to hypothesize a reason for why female song has been missed until 2020 in this widely studied species."
},
"preview": {
"__component": "lesson-plan.lesson-preview",
"SectionTitle": "Lesson Preview",
"Multimedia": [
{
"order": 1,
"type": "video",
"title": "The Return of The Florida Panther",
"description": "Did you know Florida had panthers? The Florida panther, Puma concolor coryi, is a critically endangered species in the southern regions of Florida. Once rare and almost never seen, the Florida panther has bounced back from a brush with extinction to the point where more frequent encounters have people asking questions about this apex predator. There are misconceptions, misinformation, and misunderstandings about the panther and its habitat, so ecologist and filmmaker Chris Morgan travelled to Florida to get to the bottom of it. ",
"lessonRelevance": "For Part 1: This video provides background on the plight of Florida panthers, and different viewpoints in favor or against them. Provides a starting point for discussions about different strategies for saving endangered species and a hook for exploring genetics.",
"by": "UPROAR",
"byLink": "https://www.youtube.com/channel/UCKMBsN-udVTDvi0T67bU0Eg",
"keywords": "endangered species, Florida panther, puma, conservation, success story",
"mainLink": "https://www.youtube.com/embed/S98srPEViJs",
"vimeoLink": null,
"filename": null,
"otherLink": null
},
{
"order": 2,
"type": "video",
"title": "What is genetic rescue, and can we use it to save endangered species?",
"description": "This video is part of \"Genetic Rescue to the Rescue,\" a Galactic Polymath lesson about endangered species, why they matter, what we lose if they go extinct, and what we can do to save them. \nFlorida panthers (Puma concolor coryi) nearly went extinct in the 1990s. Here, we learn what happened and how wildlife managers tried to bring them back. Through this story, we explore connected concepts of how habitat fragmentation affects the flow of genes, and how this can lead to increasing risk of extinction in endangered species (the \"Extinction Vortex\"). The video ends with an open-ended question about what common species we could use to study endangered species recovery so that we don't run the chance of inadvertently destroying what we're trying to save.\nCheck out the lesson at https://www.galacticpolymath.com/lessons",
"lessonRelevance": "For Part 4: This video summarizes key learning objectives from Parts 1-3, and provides deeper context around genetic rescue, its potential risks, and benefits.",
"by": "Galactic Polymath",
"byLink": "https://www.youtube.com/channel/UCfyBNvN3CH4uWmwOCQVhmhg/featured",
"keywords": "endangered species, Florida panther, puma, conservation, genetic rescue, gene flow, genetic variation, DNA, extinction vortex",
"mainLink": "https://www.youtube.com/embed/oFQmNq8sJ2Y",
"vimeoLink": null,
"filename": null,
"otherLink": null
},
{
"order": 3,
"type": "video",
"title": "Saving a species through genetic rescue: Why we need model organisms",
"description": "This video is part of \"Genetic Rescue to the Rescue,\" a Galactic Polymath lesson about endangered species, why they matter, what we lose if they go extinct, and what we can do to save them. This video focuses on model organisms—species used to study a problem that is impossible to study in the target organism. In this case, we learn about how Dr. Sarah Fitzpatrick, PhD uses Trinidadian guppies to study genetic rescue—a strategy used to bring back species like endangered Florida panthers from the brink of extinction. \nCheck out the lesson at https://www.galacticpolymath.com/lessons",
"lessonRelevance": "For Part 5: Explains why model organisms are necessary to study endangered species. Dr. Sarah Fitzpatrick talks about her guppy research, drawing parallels to Florida panthers and the paired data sets students will analyze.",
"by": "Galactic Polymath",
"byLink": "https://www.youtube.com/channel/UCfyBNvN3CH4uWmwOCQVhmhg/featured",
"keywords": "endangered species, Florida panther, puma, guppies, conservation, genetic rescue, gene flow, genetic variation, DNA, extinction vortex, women in STEM, real scientist",
"mainLink": "https://www.youtube.com/embed/AiXyHxv4Sx4",
"vimeoLink": null,
"filename": null,
"otherLink": null
}
],
"QuickPrep": "1. Watch Video(s) for Part 1\n2. Look over <AnchorLink href=\"#background\"> Background <\/AnchorLink>\n3. Look over <AnchorLink href=\"#procedure\"> Procedure <\/AnchorLink>\n4. <AnchorLink href=\"#teaching_materials\"> Teach it! <\/AnchorLink>\n5. Repeat for each part and <AnchorLink href=\"#feedback\"> tell us what you think. <\/AnchorLink>\n",
"InitiallyExpanded": true
},
"teaching-materials": {
"__component": "teaching-resources.teaching-resources",
"SectionTitle": "Teaching Materials",
"Data": {
"classroom": {
"resourceSummary": [
{
"nItems": 5,
"itemCat": "Digital Items",
"itemsGroup": [
{
"item": "Presentation",
"itemExplanation": "x 5 Parts"
}
]
},
{
"nItems": 11,
"itemCat": "Printed Items",
"itemsGroup": [
{
"item": "Teacher Worksheet",
"itemExplanation": "x 5 Parts"
},
{
"item": "Student Worksheet",
"itemExplanation": "x 5 Parts"
},
{
"item": "\"Big\" and \"Small\" Panther Population Cards (for Part 2)",
"itemExplanation": "Set of cards for each group"
}
]
},
{
"nItems": 6,
"itemCat": "Other Requirements",
"itemsGroup": [
{
"item": "(For Part 2) Opaque Envelopes",
"itemExplanation": "– (i.e. 1 for \"Big\" and another for \"Small\" Population cards for each group)"
},
{
"item": "(For Part 2) Scissors",
"itemExplanation": "For cutting out panther cards"
},
{
"item": "Teacher's computer",
"itemExplanation": null
},
{
"item": "Internet Connection",
"itemExplanation": null
},
{
"item": "Projector",
"itemExplanation": null
},
{
"item": "Set of Speakers",
"itemExplanation": null
}
]
}
],
"gradeVariantNotes": null,
"resources": [
{
"grades": "Grades 5-6",
"gradePrefix": "G5-6",
"links": {
"linkText": "Download G5-6 Materials for All Parts",
"url": "https://drive.google.com/drive/folders/1_l05Hh42OCn27s4J0EA2ZZIv6DH3iklv"
},
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "Present Now",
"url": "https://docs.google.com/presentation/d/1-xkENqDwXLz62_UHXWAmQ2eJPCUpNywXB-uz1dywIak/present"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/presentation/d/1-xkENqDwXLz62_UHXWAmQ2eJPCUpNywXB-uz1dywIak/template/preview"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1XMeydMI5WUk7bajhazvqFjQcS9yUwRSu2-9VVM4H13A/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1XMeydMI5WUk7bajhazvqFjQcS9yUwRSu2-9VVM4H13A/"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1IeOvMypCE2OTjMf3ZEe9MmcoF0NB1YzRPTHbl8xaeqU/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1IeOvMypCE2OTjMf3ZEe9MmcoF0NB1YzRPTHbl8xaeqU/"
}
]
}
]
}
]
},
{
"grades": "Grades 7-8",
"gradePrefix": "G7-8",
"links": {
"linkText": "Download G7-8 Materials for All Parts",
"url": "https://drive.google.com/drive/folders/1_l_wCb4BnqAwl7lRd4rhniYnWWxCo6dp"
},
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "Present Now",
"url": "https://docs.google.com/presentation/d/1vyCDH9FccecJV0umctV--9nWmdKikbVQ47ToKUtYq8Y/present"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/presentation/d/1vyCDH9FccecJV0umctV--9nWmdKikbVQ47ToKUtYq8Y/template/preview"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1s2qYrx_88xEfeRNM530Jxs4cLbJeRPzmfI7cd7UQDT8/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1s2qYrx_88xEfeRNM530Jxs4cLbJeRPzmfI7cd7UQDT8/"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1hDWushBDAAwUuEuUdr--hGqrMyUriHnw9Y41zOMHHC0/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1hDWushBDAAwUuEuUdr--hGqrMyUriHnw9Y41zOMHHC0/"
}
]
}
]
}
]
},
{
"grades": "Grades 9-12",
"gradePrefix": "G9-12",
"links": {
"linkText": "Download G9-12 Materials for All Parts",
"url": "https://drive.google.com/drive/folders/1-LEgUSzHNVGq59c33AmFZD3mBsFp3MOK"
},
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "Present Now",
"url": "https://docs.google.com/presentation/d/11-0q_jFckw3jo3IrmmGpPRwVsfQ6LOy9OoSMxn5Hvo4/present"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/presentation/d/11-0q_jFckw3jo3IrmmGpPRwVsfQ6LOy9OoSMxn5Hvo4/template/preview"
}
]
},
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "Present Now",
"url": "https://docs.google.com/presentation/d/1y5C2w1bJouuCE-_T383eDUKXREfU3OblxYHm10lfVy4/present"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/presentation/d/1y5C2w1bJouuCE-_T383eDUKXREfU3OblxYHm10lfVy4/template/preview"
}
]
},
{
"itemTitle": "Part 1 Student Worksheet",
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1pV0IRpph3dnb8V-o0uKfuNjedNV8BFsdNBoG2BSKK0o/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1pV0IRpph3dnb8V-o0uKfuNjedNV8BFsdNBoG2BSKK0o/"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1f4-nC_VBrKdLCU6gHucbTkByVheTHtE668OXqNpzdME/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1f4-nC_VBrKdLCU6gHucbTkByVheTHtE668OXqNpzdME/"
}
]
},
{
"itemTitle": "Part 1 Teacher Worksheet",
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1QOCEvwIk8366_VK18TnXMCyqDyy9sx6D12q5xjcGK_U/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1QOCEvwIk8366_VK18TnXMCyqDyy9sx6D12q5xjcGK_U/"
}
]
},
{
"itemTitle": null,
"itemCat": null,
"links": [
{
"linkText": "PDF",
"url": "https://docs.google.com/document/d/1w7aK0dBglK5NedpIMWnx9Cz0Xwfg7U1MQqPVDEc1kxg/export?format=pdf"
},
{
"linkText": "Copy to My Google Drive",
"url": "https://docs.google.com/document/d/1w7aK0dBglK5NedpIMWnx9Cz0Xwfg7U1MQqPVDEc1kxg/"
}
]
}
]
}
]
}
]
},
"remote": {
"resourceSummary": [
{
"nItems": 3,
"itemCat": "Digital Items",
"itemsGroup": [
{
"item": "Nearpod Lessons",
"itemExplanation": "x 3 Parts"
}
]
},
{
"nItems": 2,
"itemCat": "(Optional) Printed Items",
"itemsGroup": [
{
"item": "Teacher Worksheets",
"itemExplanation": "(optional for Part 3)"
},
{
"item": "Student Worksheet",
"itemExplanation": "(optional for Part 3)"
}
]
},
{
"nItems": 4,
"itemCat": "Other Requirements",
"itemsGroup": [
{
"item": "Internet connection",
"itemExplanation": null
},
{
"item": "Student laptops",
"itemExplanation": null
},
{
"item": "Scratch paper & pencil",
"itemExplanation": "(may or may not be necessary)"
},
{
"item": "Speakers/headphones",
"itemExplanation": null
}
]
}
],
"gradeVariantNotes": null,
"resources": [
{
"grades": "Grades 5-6",
"gradePrefix": "G5-6",
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "ERROR: 'Preview Now with Nearpod' link missing",
"url": null
},
{
"linkText": "ERROR: 'Add to My Nearpod Library' link missing",
"url": null
},
{
"linkText": "Edit in My Google Drive",
"url": "https://docs.google.com/presentation/d/1ZS2e0Y8s74Fq85ak4OOi7_VLEcGQpCKpP5koCG1V5e8/template/preview"
}
]
}
]
}
]
},
{
"grades": "Grades 7-8",
"gradePrefix": "G7-8",
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "ERROR: 'Preview Now with Nearpod' link missing",
"url": null
},
{
"linkText": "ERROR: 'Add to My Nearpod Library' link missing",
"url": null
},
{
"linkText": "Edit in My Google Drive",
"url": "https://docs.google.com/presentation/d/1JvfwHaXqbsv6HN9gJAQI4AuAKKHKvza89mqHPqJ3GO8/template/preview"
}
]
}
]
}
]
},
{
"grades": "Grades 9-12",
"gradePrefix": "G9-12",
"parts": [
{
"part": null,
"title": null,
"preface": null,
"itemList": [
{
"itemTitle": "Presentation",
"itemCat": "presentation",
"links": [
{
"linkText": "ERROR: 'Preview Now with Nearpod' link missing",
"url": null
},
{
"linkText": "ERROR: 'Add to My Nearpod Library' link missing",
"url": null
},
{
"linkText": "Edit in My Google Drive",
"url": "https://docs.google.com/presentation/d/1a0dRiYA_L0LG_4KE6dImmgGQHkZtG4utPvn816DoXOw/template/preview"
}
]
}
]
}
]
}
]
}
}
},
"procedure": {
"__component": "lesson-plan.procedure",
"SectionTitle": "Procedure",
"Data": {
"lessonPreface": "Part 2 is perhaps the densest. Everything builds toward interpreting real data from genetic rescue in Florida panthers and Trinidadian guppies (a model for studying endangered species) in Part 5.",
"lessonDur": "5 x 45 min",
"parts": [
{
"partNum": 1,
"partTitle": "Florida Panthers in Peril",
"partDur": 45,
"partPreface": "Introduction to the plight of the critically endangered Florida panther.",
"chunks": [
{
"chunkTitle": "Warm-Up",
"chunkStart": 0,
"chunkDur": 5,
"steps": [
{
"Step": 1,
"StepTitle": "Polymath Puzzle #1",
"StepQuickDescription": "What Question are we Investigating?",
"StepDetails": "Students interpret a series of images (rebus puzzle) to determine the focus of this lesson.",
"Vocab": "- **subspecies:** a distinct population of a species, typically due to geographic isolation",
"VariantNotes": null,
"TeachingTips": "This type of puzzle is called a [rebus](https://en.wikipedia.org/wiki/Rebus)."
}
]
},
{
"chunkTitle": "Meet the Florida Panther",
"chunkStart": 5,
"chunkDur": 5,
"steps": [
{
"Step": 2,
"StepTitle": "Scientific vs. Common Names",
"StepQuickDescription": "Brief intro to Genus and species and why scientific names avoid confusion around common names.",
"StepDetails": "What we call a \"panther\" actually means a lot of different, very distinct types of cat. ",
"Vocab": "- **scientific name:** the *Genus* + *species* of an organism\n- **common name:** a local name for an organism\n- **panther:** can refer to 1) a dark variety of a jaguar or leopard or 2) the Florida subspecies of the Puma or mountain lion",
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 3,
"StepTitle": "Florida Panther history",
"StepQuickDescription": "A *very* brief history of how these great cats were hunted and driven to the brink of extinction.",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Exploring Panther Perspectives",
"chunkStart": 10,
"chunkDur": 15,
"steps": [
{
"Step": 4,
"StepTitle": "Watch Video 1",
"StepQuickDescription": "How do people feel about the Florida Panther?",
"StepDetails": "[\u25b6\"The Return of The Florida Panther\"](https://www.youtube.com/watch?v=S98srPEViJs&list=PLz-D3xOC0d88kLYQLB9xeUz7gAaO1JJZb&index=1) explores the plight of the panther through the lens of different stakeholders (e.g. urbanites, ranchers, and Native Americans).",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 5,
"StepTitle": "Reflection + Discussion",
"StepQuickDescription": "Students Think+Ink+Share what they noticed/inferred from the video about why different groups like or dislike panthers.",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 6,
"StepTitle": "Let's review a scene",
"StepQuickDescription": "Students reflect on a scene where a man compares the loss of panthers to loss of Master Art Works. ",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "What Happens if we Lose the Florida Panther?",
"chunkStart": 25,
"chunkDur": 20,
"steps": [
{
"Step": 7,
"StepTitle": "On the Brink of Extinction",
"StepQuickDescription": "Students spend rest of class period reflecting on different impacts of losing Florida panthers.",
"StepDetails": "Students work with a partner, in a group, or individually, as you prefer to fill out a table with biological, social, and economic impacts caused by the extinction of Florida panthers. After sharing/discussing as a class, they spend the rest of class reflecting individually about different stakeholder perspectives and summarizing take-homes.",
"Vocab": "- **inbred:** the product of mating with closely related individuals; often results in individuals with genetic disorders\n- **inbreeding:** a condition that occurs when genetically closely related animals mate, especially over multiple generations",
"VariantNotes": null,
"TeachingTips": null
}
]
}
]
},
{
"partNum": 2,
"partTitle": "Genetics of Endangered Species",
"partDur": 45,
"partPreface": "Reviews relevant genetics topics including dominant/recessive alleles and genotype vs. phenotype.",
"chunks": [
{
"chunkTitle": "Warm-Up",
"chunkStart": 0,
"chunkDur": 5,
"steps": [
{
"Step": 1,
"StepTitle": "Polymath Puzzles Set #2",
"StepQuickDescription": "Students solve two puzzles which demonstrate the meaning of biological traits and how these translate into genetic variation.",
"StepDetails": "For Polymath Puzzle #1, students look at a series of shapes with different patterns and colors and they must count how many different \"traits\" can be observed. For puzzle #2, students are shown two groups of traits and they must decide which group exhibits greater variation.",
"Vocab": "- **trait:** a specific characteristic of an organism\n- **variation:** any difference in organisms caused by genetic and/or environmental differences",
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Genetics Mini-Review: Unhealthy Cats",
"chunkStart": 5,
"chunkDur": 20,
"steps": [
{
"Step": 2,
"StepTitle": "Genetics Mini-Review",
"StepQuickDescription": "Students go through a quick review of dominant and recessive alleles.",
"StepDetails": "Spend some time going through the slides with students to ensure a solid understanding of dominant and recessive traits. These form the basis of why the Florida Panther is experiencing genetic crisis. ",
"Vocab": "- **nucleotide:** one of 4 chemical building blocks of DNA; abbreviated as A, C, G, and T\n- **allele:** different forms of a gene\n- **dominant:** when a trait is still functional even if one allele is defective\n- **recessive:** when a trait is only expressed when an individual has two copies of the allele\n- **genotype:** the combination of alleles an individual has for a set of genes\n- **phenotype:** the combined effect of genes to produce a trait",
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Recessive Traits Activity",
"chunkStart": 25,
"chunkDur": 20,
"steps": [
{
"Step": 3,
"StepTitle": "Understanding Inbreeding",
"StepQuickDescription": "How does population size affect how common recessive traits are?",
"StepDetails": "In this activity, students simulate matings between panthers in a small and a large population. The slides guide students through understanding the 3 traits that we will be studying: kinked tails (a bone defect), a heart defect (where kittens are born with a hole in the septum), and cowlick (a strange pattern in the fur). By simulating matings in a large population (where recessive traits will be less common) and a small population (which parallels inbreeding in endangered populations), students should recognize how population size affects overall health of a species.",
"Vocab": "- **inbreeding:** a condition that occurs when genetically closely related animals mate, especially over multiple generations",
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 4,
"StepTitle": "Small Population Simulations",
"StepQuickDescription": "Students should work in groups to fill out their worksheets. ",
"StepDetails": "Each group should have 2 envelopes with cutouts of 15 panther cards (1 set sampled from a small population; 1 sampled from a big population). Students start by drawing a pair of parents from the small population. They fill in Table 1, practicing with assigning genotypes and phenotypes.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": "A pair of groups can share a set of envelopes to save you time and paper."
},
{
"Step": 5,
"StepTitle": "Small Population Mating",
"StepQuickDescription": "With Steps 7-8, students randomly select alleles to pass on and describe phenotypes of offspring.",
"StepDetails": "If a parent is homozygous (e.g. TT or tt), they only have one allele to pass on. In cases of heterozygous parents (Tt), you can have students flip a coin to determine which allele gets passed on.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 6,
"StepTitle": "Learn, Practice, Repeat",
"StepQuickDescription": "Once the worksheet has walked students through the process, they simulate 5 more matings.",
"StepDetails": "First students fill out Table 3, with three matings (parent and offspring genotypes), counting up recessive phenotypes. They then do the same thing in Table 4, drawing cards from the \"Big Population,\" which has many fewer recessive genotypes.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 7,
"StepTitle": "Combine Data",
"StepQuickDescription": "Once groups have finished simulating matings in both populations, they combine data as a class.",
"StepDetails": "You will need to have Table 5 drawn on the board (or use a spreadsheet) to allow groups to record their data.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": "Look out for errors: small population matings should have many more recessive genotypes than big population matings."
},
{
"Step": 8,
"StepTitle": "Independent Analysis",
"StepQuickDescription": "Students copy down other groups' data in Table 5",
"StepDetails": "Students will then calculate the total number of recessive phenotypes out of the total possible to get a percentage. They should then reflect on why the percentage of recessive traits is higher in the small population and why it is important.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
}
]
},
{
"partNum": 3,
"partTitle": "The Florida Panther Debate",
"partDur": 45,
"partPreface": "Delves into what can (or should) be done to help save the Florida Panther. ",
"chunks": [
{
"chunkTitle": "Role Play: What to do about the Florida Panther?",
"chunkStart": 0,
"chunkDur": 25,
"steps": [
{
"Step": 1,
"StepTitle": "Brainstorming",
"StepQuickDescription": "Students simulate being on a committee in 1994 that will decide what to do about Florida Panthers.",
"StepDetails": "Divide students into 3 groups and assign each a different option to advocate: let nature run its course; start a captive breeding program; or use genetic rescue. Allow groups 5-10 minutes to brainstorm the pros and cons of their arguments and fill out questions 1 & 2 on the worksheet. ",
"Vocab": "- **captive breeding:** breeding in zoos and aquariums of plants or animals to maintain populations",
"VariantNotes": null,
"TeachingTips": "For a large class, you can have multiple sets of 3. (e.g. have students number of 1-3, and have 3 group stations for the front half and 3 group stations for the back half of the room)"
},
{
"Step": 2,
"StepTitle": "Gallery Walk",
"StepQuickDescription": null,
"StepDetails": "Groups then complete a gallery walk to observe what others worked on and finish by returning to their own group and finishing the worksheet based on what they learned.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": "You can choose whether the gallery walk should be \"as a group\" or individually paced."
}
]
},
{
"chunkTitle": "Share Out! Pros/Cons of Saving the Florida Panther",
"chunkStart": 25,
"chunkDur": 20,
"steps": [
{
"Step": 3,
"StepTitle": "Class Discussion",
"StepQuickDescription": "Each group will have the opportunity to share the pros & cons they brainstormed for each committee scenario. ",
"StepDetails": "Write or type the pros & cons on three large charts for each scenario based on the students' input. Once all three options have been discussed, each student gets to vote on a course of action. Ask students to provide evidence and reasoning to support their choice.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": "If you want to bring in some technology, you could add (or ask students to add) observations to a [Google Jamboard](https://ditchthattextbook.com/jamboard/) or [Padlet](https://www.techlearning.com/how-to/what-is-padlet-and-how-does-it-work-for-teachers-and-students)."
},
{
"Step": 4,
"StepTitle": "Scaffolding",
"StepQuickDescription": "Slides go over the major pros & cons for each scenario, in case anything was missed.",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 5,
"StepTitle": "Vote!",
"StepQuickDescription": "Ask students to vote on a course of action",
"StepDetails": "Ask them to provide evidence and reasoning to support their choice.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 6,
"StepTitle": "Students Finish Worksheet on their Own",
"StepQuickDescription": null,
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
}
]
},
{
"partNum": 4,
"partTitle": "Deep Dive into Genetic Rescue",
"partDur": 45,
"partPreface": "Provides an overview of genetic rescue concepts and how it relates to Florida Panther situation. ",
"chunks": [
{
"chunkTitle": "Genetic Rescue Deep Dive",
"chunkStart": 0,
"chunkDur": 10,
"steps": [
{
"Step": 1,
"StepTitle": "Overview",
"StepQuickDescription": "Students watch part of [\u25b6\"What is genetic rescue, and can we use it to save endangered species?\"](https://www.youtube.com/watch?v=oFQmNq8sJ2Y&list=PLz-D3xOC0d88kLYQLB9xeUz7gAaO1JJZb&index=2) to review and go deeper into what genetic rescue is and why it is so important for a population to have genetic variation. ",
"StepDetails": null,
"Vocab": "- **habitat fragmentation:** the process of breaking a habitat up into disconnected pieces",
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": null,
"chunkStart": 10,
"chunkDur": 20,
"steps": [
{
"Step": 2,
"StepTitle": "The Extinction Vortex",
"StepQuickDescription": "Students continue watching [\u25b6\"What is genetic rescue, and can we use it to save endangered species?\"](https://www.youtube.com/watch?v=oFQmNq8sJ2Y&list=PLz-D3xOC0d88kLYQLB9xeUz7gAaO1JJZb&index=2) to learn more about what an extinction vortex is and how populations can be saved from this circumstance.",
"StepDetails": "They are then asked to fill out a concept map to demonstrate understanding of the Extinction Vortex. The slides then walk through a discussion of the logic behind the correct concept map.",
"Vocab": "- **extinction:** the dying out of a species due to environmental or evolutionary changes\n- **concept map:** a diagram that shows how different inputs or parts of a system affect each other",
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 3,
"StepTitle": "Genetic Rescue Concept Mapping",
"StepQuickDescription": "Students work in pairs to fill out a scaffolded concept map of Genetic Rescue",
"StepDetails": "Encourage a group to share their answer and the process for figuring it out. Walk through the logic as a class.",
"Vocab": "- **genetic rescue:** introducing individuals with new genetic variation to help a population recover from inbreeding",
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 4,
"StepTitle": "Pivot to Model Organisms",
"StepQuickDescription": "Students finish the video, explaining how genetic rescue can go wrong.",
"StepDetails": "Students are asked to study a table of organisms to determine which would be good and which would be bad models to use in studies of genetic rescue.",
"Vocab": "- **model organism:** a species used to study a problem when it is difficult or impossible to study in a target species",
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Independent Reflection",
"chunkStart": 30,
"chunkDur": 15,
"steps": [
{
"Step": 5,
"StepTitle": "Students Finish Worksheet on their Own",
"StepQuickDescription": "Students pick a model species to study genetic rescue from the table of options.",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
}
]
},
{
"partNum": 5,
"partTitle": "Analyzing Real Genetic Rescue Data",
"partDur": 45,
"partPreface": "Uses real data from a model species to investigate whether genetic rescue is a viable conservation method for Florida Panthers.",
"chunks": [
{
"chunkTitle": "Review",
"chunkStart": 0,
"chunkDur": 5,
"steps": [
{
"Step": 1,
"StepTitle": "Genetic Rescue in Action",
"StepQuickDescription": "Students review the end of [\u25b6\"What is genetic rescue, and can we use it to save endangered species?\"](https://www.youtube.com/watch?v=oFQmNq8sJ2Y&list=PLz-D3xOC0d88kLYQLB9xeUz7gAaO1JJZb&index=2) and go over the previous day's worksheet.",
"StepDetails": "Tortoises are the only bad option listed, as they have a slow generation time and are not common. The other species are all actual models for genetic rescue research.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Dr. Sarah Fitzpatrick Talks About her Research",
"chunkStart": 5,
"chunkDur": 5,
"steps": [
{
"Step": 2,
"StepTitle": "Hear it from a Scientist!",
"StepQuickDescription": "Dr. Fitzpatrick, whose research forms the basis of this lesson, discusses how she has studied genetic rescue using Trinidadian Guppies (fish) in [\u25b6\"Saving a species through genetic rescue: Why we need model organisms\"](https://www.youtube.com/watch?v=AiXyHxv4Sx4&list=PLz-D3xOC0d88kLYQLB9xeUz7gAaO1JJZb&index=3).",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Quick Activity",
"chunkStart": 10,
"chunkDur": 15,
"steps": [
{
"Step": 3,
"StepTitle": "Instant Peer Review",
"StepQuickDescription": "Students compare and contrast guppies and panthers on their worksheets (Q1-4).",
"StepDetails": "They then switch papers with a partner. They should underline a point they strongly agree with, circle a point they disagree with or think should be explained better, and discuss. Then revise based on the feedback. Students can then share positive/helpful feedback they received.",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 4,
"StepTitle": "Scaffolding",
"StepQuickDescription": "Slides walk through the primary responses students should have come up with.",
"StepDetails": null,
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
}
]
},
{
"chunkTitle": "Analyzing Real Data",
"chunkStart": 25,
"chunkDur": 20,
"steps": [
{
"Step": 5,
"StepTitle": "Developing Predictions",
"StepQuickDescription": "Students revisit the genetic rescue concept map and think about what they could measure to assess success.",
"StepDetails": "Specifically, we expect that if genetic rescue is successful:\n1. genetic variation should increase and \n2. as a result population size should increase (because of higher survival and reproduction)",
"Vocab": null,
"VariantNotes": null,
"TeachingTips": null
},
{
"Step": 6,
"StepTitle": "Independent Analysis",
"StepQuickDescription": "Students spend the rest of class filling out the worksheet on their own.",