RHP Birdwatching Life list
Birdwatching
/**
* Add a static (unsortable) column of numbers to the left of a table.
*
* Table classes:
* - static-row-numbers: Display column of right-aligned numbers.
* - static-row-numbers-center: Center align numbers.
* - static-row-numbers-left: Left align numbers.
* - static-row-header-text: Display "No." text column label.
* - static-row-header-hash: Display hash ("#") symbol column label.
*
* Row classes:
* - static-row-header: Disable number and borders.
* - static-row-numbers-norank: Disable number and keep borders.
*
* Table data attributes:
* - data-srn-limit="#": (#=10) Remove numbers beyond row #.
*
* Tested:
* - Windows 10: (all skins) Chrome, Firefox, Edge.
* - Android Galaxy S21 (MinervaNeue): Chrome, Firefox.
* - Wikipedia Android app.
* - Print.
* - No JavaScript.
* - Sticky gadget in Windows browsers (default skin).
* - Dark Reader browser extention in Windows browsers (default skin).
*
* Notes:
* - Sortable moves to thead any header rows and (after sort) sorttop rows.
* - Sticky gadget (.mw-sticky-header) moves to thead any wikitable header rows.
*/
.static-row-numbers {
counter-reset: rowNumber;
} .static-row-numbers tr::before {
content: ""; display: table-cell; padding-right: 0.5em; padding-left: 0.5em; text-align: right; vertical-align: inherit;
} .static-row-numbers.static-row-numbers-center tr::before {
text-align: center;
} .static-row-numbers.static-row-numbers-left tr::before {
text-align: left;
} .static-row-numbers.wikitable tr::before {
background-color: var(--background-color-neutral, #eaecf0);
}
/**
* Add count to all tbody rows without the "static-row-numbers-norank" or * "static-row-header" classes. If no thead, then skip the first tbody row. */
.static-row-numbers thead + tbody tr:first-child:not(.static-row-header):not(.static-row-numbers-norank)::before, .static-row-numbers tbody tr:not(:first-child):not(.static-row-header):not(.static-row-numbers-norank)::before {
counter-increment: rowNumber; content: counter(rowNumber);
}
/**
* Remove count on tbody rows beyond the limit. * Note, nth-child cannot be combined with not() to exclude headers and the * "static-row-header" and "static-row-numbers-norank" classes: * - Table must be sortable to move headers pre-sort to thead. * - No sorttop (static-row-header) above sortable data; moved post-sort. * - No static-row-numbers-norank in sortable data. */
.static-row-numbers.sortable[data-srn-limit="10"] tbody tr:nth-child(n+11)::before {
content: "";
}
/**
* Add column label to first row in thead or, if no thead, in tbody. */
.static-row-header-text.static-row-numbers thead tr:first-child::before, .static-row-header-text.static-row-numbers caption + tbody tr:first-child::before, .static-row-header-text.static-row-numbers tbody:first-child tr:first-child::before {
content: "No."; font-weight: bold;
} .static-row-header-hash.static-row-numbers thead tr:first-child::before, .static-row-header-hash.static-row-numbers caption + tbody tr:first-child::before, .static-row-header-hash.static-row-numbers tbody:first-child tr:first-child::before {
content: "#"; font-weight: bold;
}
/**
* Add borders in numbers column. * * Windows Firefox tr::before doesn't inherit color, so hard set. * Plain table borders on Timeless Template:Row hover highlight mw-datatable. */
/* Wikitable. */ .static-row-numbers.wikitable tr::before {
border: 0 solid var(--border-color-base, #a2a9b1);
} .static-row-numbers.wikitable thead + tbody tr:first-child:not(.static-row-header)::before, .static-row-numbers.wikitable tbody tr:not(:first-child):not(.static-row-header)::before {
border-width: 1px;
} body.skin-monobook .static-row-numbers.wikitable tr::before {
border-color: #aaa;
} body.skin-timeless .static-row-numbers.wikitable tr::before {
border-color: #c8ccd1;
}
/* Plain with border. */ table[border].static-row-numbers:not(.wikitable) tr::before {
border: 0 inset var(--color-base, #202122);
} table[border].static-row-numbers:not(.wikitable) thead + tbody tr:first-child:not(.static-row-header)::before, table[border].static-row-numbers:not(.wikitable) tbody tr:not(:first-child):not(.static-row-header)::before {
border-width: 1px;
} /* Dark mode border colors calc differ for table and tr::before, per engine. */ html.skin-theme-clientpref-night table[border].static-row-numbers:not(.wikitable), html.skin-theme-clientpref-night table[border].static-row-numbers:not(.wikitable) tr::before, html.skin-theme-clientpref-night table[border].static-row-numbers:not(.wikitable) th, html.skin-theme-clientpref-night table[border].static-row-numbers:not(.wikitable) td {
/* Accessibility: Wikipedia dark mode. */ border-color: gray;
} @media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os table[border].static-row-numbers:not(.wikitable),
html.skin-theme-clientpref-os table[border].static-row-numbers:not(.wikitable) tr::before,
html.skin-theme-clientpref-os table[border].static-row-numbers:not(.wikitable) th,
html.skin-theme-clientpref-os table[border].static-row-numbers:not(.wikitable) td {
/* Accessibility: OS dark mode, Wikidedia automatic mode. */
border-color: gray;
}
}
/* Plain with optional border + .mw-datatable. */ body.skin-timeless .static-row-numbers.mw-datatable:not(.wikitable) tr::before {
border: 0 solid #c8ccd1;
} body.skin-timeless .static-row-numbers.mw-datatable:not(.wikitable) thead + tbody tr:first-child:not(.static-row-header)::before, body.skin-timeless .static-row-numbers.mw-datatable:not(.wikitable) tbody tr:not(:first-child):not(.static-row-header)::before {
border-width: 1px;
}
| Common Name | Binomial Name | Earliest Date | Place | State |
|---|---|---|---|---|
| Blue Jay | Cyanocitta cristata | 2022 | Farmhouse | LA |
| Cardinal | Cardinalis cardinalis | 2022 | Farmhouse | LA |
| Red Crested Cardinal | Paroaria coronata | 2010's | Puako Beach, Hawaii | Hawaii |
| Black-Crowned Night Heron | Nycticorax nycticorax | 2020's | Puako Beach, Hawaii | Hawaii |
| Loggerhead Shrike | Lanius ludovicianus | 2022 | Farmhouse | LA |
| Northern Mockingbird | Mimus polyglottos | 2022 | Farmhouse | LA |
| Wood Duck | Aix sponsa | 2022 | Coulee Mine, Farm | LA |
| Great Blue Heron | Ardea herodias | 2022 | Coulee Mine, Farm | LA |
| Double Crested Cormorant | Nannopterum auritum | 3/1/2022 | Lake Martin | LA |
| Green Heron | Butorides virescens | 3/1/2022 | Lake Martin | LA |
| Turkey Vulture | Cathartes aura | 3/1/2022 | Lake Martin | LA |
| Black Vulture | Coragyps atratus | 3/1/2022 | Lake Martin | LA |
| Meadowlark (Probably Eastern type?) | 3/6/2022 | Farm | LA | |
| Killdeer | Charadrius vociferus | 2022 | Farm | LA |
| Black-bellied Whistling Duck | Dendrocygna autumnalis | 3/1/2022 | Lake Martin | LA |
| Peregrine Falcon | Falco peregrinus | 2/5/2024 | Farmhouse | LA |
| Cedar Waxwing | Bombycilla cedrorum | 3/8/2023 | Farmhouse | LA |
| Bohemian waxwing | Bombycilla garrulus | 2006 | South Anchorage | Alaska |
| Red Winged Blackbird | Agelaius phoeniceus | 3/25/2023 | Farmhouse Feeder | LA |
| Grackle | 3/8/2023 | Farm (hundreds) | LA | |
| Cattle egret | Ardea ibis | 3/5/2024 | Farm (hundreds) | LA |
| Meadowlark | 3/1/2024 | Farmhouse | LA | |
| Eurasian Collared dove | Streptopelia decaocto | 3/5/2024 | near farmhouse feeder | LA |
| Mourning dove | Zenaida macroura | early 2000's | nesting in Jon's backyard | LA |
| Red Winged Blackbird | Agelaius phoeniceus | 3/16/2024 | Farmhouse Feeder | LA |
| Eastern bluebird | Sialia sialis | 3/18/2024 | in nest box, farm | LA |
| Loggerhead Shrikes fledged | 3/21/2024 | 3 fledglings | LA | |
| Cedar waxwing, dozens | 4/24/2024 | Mulberry tree, Farmhouse | LA | |
| Cardinal | 11/20/2024 | Farmhouse | LA | |
| Brown-headed Cowbird | Molothrus ater | Farmhouse | LA | |
| Sharp-shinned Hawk? | 11/30/2024 | Albertsons on Amb Caffery | LA | |
| Red Crossbill | Loxia curvirostra | 6/13/2024 | South Anchorage bird feeder | Alaska |
| Varied Thrush | Ixoreus naevius | 5/15/2025 | South Anchorage bird feeder | Alaska |
| Harlequin duck | Histrionicus histrionicus | 6/13/2025 | Anchorage, Ship Creek | Alaska |
| Trumpeter Swan | Cygnus buccinator | 9/14/2025 | Portage, Explorer Pond | Alaska |
| Greater White-fronted Goose | Anser albifrons | 2005 | Marsh Club, Gueydan | LA |
| Great Blue Heron | Ardea herodias | 10/?/2025 | Portage, Explorer Pond | Alaska |
| White Ibis | Eudocimus albus | 11/26/2025 | Lake Martin | LA |
| Pileated Woodpecker | Dryocopus pileatus | 12/7/2025 | Lake Martin | LA |
| Limpkin | Aramus guarauna | 12/18/2025 | Lake Martin | LA |
| Brown Thrasher | Toxostoma rufum | 4/3/2026 | Farmhouse Feeder | LA |
| Common Redpoll | Acanthis flammea | 5/6/2026 | South Anchorage bird feeder | Alaska |
| Black Capped Chickadee | Parus atricapillus | 5/6/2026 | South Anchorage bird feeder | Alaska |
| Boreal Chickadee | Parus hudsonicus | 5/2026 | South Anchorage bird feeder | Alaska |
| Pine Siskin | Spinus pinus | 5/2026 | South Anchorage bird feeder | Alaska |
| Red Breasted Nuthatch | Sitta canadensis | 5/??/2026 | South Anchorage bird feeder | Alaska |
| Steller’s Jay | Cyanocitta Stelleri | 4/30/2026 | South Anchorage bird feeder | Alaska |
| Canada Jay | Perisoreus Canadensis | 6/4/2024 | South Anchorage bird feeder | Alaska |
| Canada Goose | Branta canadensis | 5/6/2026 | Anchorage | Alaska |
| Mallard | Anas platyrhynchos | 5/7/2026 | Anchorage | Alaska |
| Ruffed Grouse w/ Walter Combs | Bonasa umbellus | Early 2000's | North of Palmer | Alaska |
| Spruce Grouse, w/ Dr. Al Rees | Dendragopus canadensis | 1995? | Eagle River Nature Center | Alaska |
| Bald Eagle | Haliaeetus leucocephalus | 5/18/2024? | Twentymile River, Portage | Alaska |
| Osprey | Pandion haliaetus | Lake Martin | LA | |
| Northern Harrier | Circus cyaneus | Jim Creek, Palmer | Alaska | |
| Northern Goshawk | Accipiter gentilus | 2001? | Neighbor’s backyard, Anchorage | Alaska |
| Red-tailed Hawk | Buteo jamaicensis | 2024 | Lafayette | LA |
| American Kestrel | Falco sparverius | Lafayette | LA | |
| Merlin | Falco columbarius | Lafayette | LA | |
| Common Raven | Corvus corax | Anchorage | Alaska | |
| Black-billed Magpie | Pica pica | Anchorage | Alaska | |
| Sharp-Tailed Grouse | Tympanuchus phasianellus | about 2013 | Stanford | Montana |
| Bobwhite Quail | Colinus virginianus | about 2007 | Arnett | Oklahoma |
| Woodcock | Scolopax minor | Indian Bayou | LA | |
| Common Snipe (checked waders for food) | Gallinago gallinago | Jim Creek, Palmer | Alaska | |
| Bonaparte’s Gull | Larus philadelphia | 2025 | Iguigig | Alaska |
| Belted Kingfisher | Ceryle alcyon | McRobert’s Creek, Palmer | Alaska | |
| Downy Woodpecker | Picoides pubescens | South Anchorage | Alaska | |
| Hairy Woodpecker | Picoides villosus | South Anchorage | Alaska | |
| Red-Headed Woodpecker | Melanerpes erythrocephalus | childhood | Lafayette | LA |
| American Dipper | Cinclus Mexicanus | Twentymile River, Portage | Alaska | |
| Snow bunting with Steve Wilson | Plectrophenax nivalis | 1993? | Mt Ballyhoo, Unalaska | Alaska |
| California Condor | Gymnogyps californianus | 10/4/2022 | Marble Canyon | Arizona |
| Roseate Spoonbill | Platalea ajaja | Lafayette | LA | |
| Great Egret | Ardea alba | 2026 | Farm | LA |
| Fish Crow | Corvus ossifragus | 4/8/2024 | Lake Catherine | AR |
| Pied-billed Grebe | Podilymbus podiceps | 4/8/2024 | Lake Catherine | AR |
| Dark Eyed Junco | Junco hyemalis | 5/2026 | South Anchorage bird feeder | AK |
| European Starling | Sturnus vulgaris | Anchorage | AK | |
| American Robin | Turdus migratorius | Anchorage | AK | |
| Green-winged teal | Anas crecca | Jim Creek, Palmer | Alaska | |
| Northern Pintail | Anas acuta | Jim Creek, Palmer | Alaska | |
| Northern Shoveler | Anas clypeata | Jim Creek, Palmer | Alaska | |
| American Wigeon | Anas americana | Jim Creek, Palmer | Alaska | |
| Ring-necked Duck | Aytha collaris | Jim Creek, Palmer | Alaska | |
| Common Goldeneye | Bucephala clangula | Jim Creek, Palmer | Alaska | |
| Common Merganser | Mergus merganser | Jim Creek, Palmer | Alaska | |
| Lesser or Greater? Scaup | Aytha ?? | Jim Creek, Palmer | Alaska | |
| Emperor Goose | Chen canagica | before 2000 | South Anchorage (Woodward Street) | Alaska |
| American Coot | Fulica americana | Canard Sauvage, Grand Chenier | LA | |
| Sandhill crane | Grus canadensis | Wasilla | Alaska | |
| Gadwall | Mareca strepera | 2005? | Canard Sauvage, Grand Chenier | LA |
| Gulf Coast Mottled duck | Anas fulvigula maculosa | 2005? | Canard Sauvage, Grand Chenier | LA |
| American White Pelican | Pelecanus erythrorhynchos | 1985 | Lake Fausse Pointe | LA |
| Brown Pelican | Pelecanus occidentalis | LA | ||
| Moa (skeleton) | 2026 | cave fossil | New Zealand | |
| North Island Brown Kiwi | Apteryx mantelli | 3/6?/2026 | Sanctuary, Queenstown | New Zealand |
| Whio/Blue Duck or Brown Teal (check) | 3/6?/2026 | Sanctuary, Queenstown | New Zealand | |
| Kaka | Naestor meridionalis | 3/6?/2026 | Sanctuary, Queenstown | New Zealand |
| Pūkeko (Australasian swamphen) | Porphyrio melanotus | 3/6?/2026 | Sanctuary, Queenstown | New Zealand |
| New Zealand Scaup | Aythya novaeseelandiae | 2/24/2026 | Floatplane Harbor, Taupo | New Zealand |
| Black Swan | Cygnus atratus | 2/24/2026 | Harbor, Taupo | New Zealand |
| Paradise Shelduck | Tadorna variegata | 2/28/2026 | Lake Heron Station | New Zealand |
| Salvin's Albatross | Thalassarche Salvini | 2/27/2026 | Kaikoura | New Zealand |
| Royal Albatross 2 (check) | 2/27/2026 | Kaikoura | New Zealand | |
| Albatross 3 (Sooty check) | 2/27/2026 | Kaikoura | New Zealand | |
| Yellow-eyed Penguin | Megadyptes antipodes | 2026 | Otago Peninsula | New Zealand |
| common | binomial | date | place | state |
| common | binomial | date | place | state |
| common | binomial | date | place | state |